Support basic markdown natively
>>> [!note] Migrated issue <!-- Drupal.org comment --> <!-- Migrated from issue #3570213. --> Reported by: [b_sharpe](https://www.drupal.org/user/2512258) Related to !5 >>> <h3 id="summary-problem-motivation">Problem/Motivation</h3> <p>Current support is limited to:</p> <pre>Allowed HTML tags are preserved and sanitized:<br>- &lt;a href="..."&gt;text&lt;/a&gt; - Links (opens in new tab with icon)<br>- &lt;strong&gt;text&lt;/strong&gt; - Bold text<br>- &lt;br&gt; - Line breaks<br><br>Markdown syntax supported:<br>- **bold** or __bold__<br>- *italic* or _italic_<br>- `inline code`<br>- ```code blocks```<br>- [link text](url)<br>- Newlines converted to &lt;br&gt;</pre><p>Let's extend this to support markdown for:</p> <ul> <li>Headings</li> <li>Lists (ordered, unordered, task lists)</li> <li>Blockquotes</li> <li>Tables</li> <li>Horizontal rules</li> </ul>
issue