Markdown to HTML

Markdown Input

<h1>Hello, Markdown!</h1>
<p>Write <strong>Markdown</strong> here and get clean <strong>HTML</strong> output.</p>
<h2>Features</h2>
<ul>
<li>GitHub Flavored Markdown (GFM)</li>
<li>Tables, task lists, strikethrough</li>
<li>Syntax highlighted code blocks</li>
</ul>
<h2>Code</h2>
<pre><code class="hljs language-javascript"><span class="hljs-keyword">function</span> <span class="hljs-title function_">greet</span>(<span class="hljs-params">name</span>) {
  <span class="hljs-keyword">return</span> <span class="hljs-string">`Hello, <span class="hljs-subst">${name}</span>!`</span>;
}</code></pre><h2>Table</h2>
<table>
<thead>
<tr>
<th>Name</th>
<th>Role</th>
</tr>
</thead>
<tbody><tr>
<td>Alice</td>
<td>Developer</td>
</tr>
<tr>
<td>Bob</td>
<td>Designer</td>
</tr>
</tbody></table>

Tool Categories