Markdown → HTML

Markdown naar HTML renderen

Markdown

Voorbeeld

Titel

Dit is vette tekst en cursief.

Subtitel

  • Item 1
  • Item 2
  • Item 3
> Quote

const x = 1;

Link

HTML-code

<h1>Titel</h1><p>Dit is <strong>vette tekst</strong> en <em>cursief</em>.</p><h2>Subtitel</h2><ul><li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
&gt; Quote</p><pre><code>const x = 1;
</code></pre><p><a href="https://example.com">Link</a>
</p>