HTML to Markdown Converter
Convert between HTML and Markdown seamlessly.
Common Conversions
HTML to Markdown
| <h1>Title</h1> | # Title |
| <p>Text</p> | Text |
| <strong>Bold</strong> | **Bold** |
| <em>Italic</em> | *Italic* |
| <a href="#">Link</a> | [Link](#) |
Markdown to HTML
| # Title | <h1>Title</h1> |
| Text | <p>Text</p> |
| **Bold** | <strong>Bold</strong> |
| *Italic* | <em>Italic</em> |
| [Link](#) | <a href="#">Link</a> |
About
This converter uses the Turndown library for HTML→Markdown conversion and the Marked library for Markdown→HTML conversion. Both directions work in real-time as you type.
Supported elements include headings, paragraphs, bold, italic, links, images, lists, blockquotes, code blocks, and tables.