When You Need HTML to Markdown
Content moves between formats constantly: a blog post gets copied from a CMS into a README, a Notion page gets exported as HTML and needs to become a wiki entry, or a legacy documentation site is migrating to a Markdown-based static site generator like Jekyll, Hugo, or Docusaurus. In every case, hand-converting HTML tags to Markdown syntax is tedious and error-prone — this tool automates it.
Element-by-Element Conversion Reference
| HTML | Markdown |
|---|---|
<h1>...</h1> | # ... |
<strong>/<b> | **text** |
<em>/<i> | *text* |
<a href="url"> | [text](url) |
<img src="url"> |  |
<ul><li> | - item |
<ol><li> | 1. item |
<code> | `code` |
<pre><code> | Fenced ``` block |
<blockquote> | > quote |
<table> | GFM pipe table |
Need to go the other direction? Use the main Markdown to HTML Converter to write Markdown and export clean HTML instead.