Markdown ↔ HTML Converter
Convert Markdown to HTML (with syntax highlighting) or strip HTML tags back to clean Markdown. Supports GitHub Flavored Markdown and custom heading IDs.
<h1>Hello World</h1>
<p>This is <strong>bold</strong> and <em>italic</em> text.</p>
<h2>Features</h2>
<ul>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ul>
<h2>Code</h2>
<pre><code class="language-javascript">function hello(name) {
return `Hello, ${name}!`;
}</code>
</pre>
<blockquote>
<p>This is a blockquote with <a href="https://example.com">a link</a>.</p>
</blockquote>Frequently Asked Questions
Which Markdown features are supported?
Headings, bold, italic, strikethrough, inline code, fenced code blocks, links, images, ordered/unordered lists, blockquotes, and horizontal rules. GFM tables are planned for a future update.