HTML to Markdown Converter
Convert HTML markup or a copied web page into clean, GFM-compatible Markdown.
Quick answer: Convert HTML markup or a copied web page into clean, GFM-compatible Markdown.
Last updated
Frequently asked questions
- Will styling like font colour survive?
- No — Markdown has no concept of colour or font. Structural elements (headings, lists, code, tables, blockquotes) and emphasis (bold, italic) round-trip cleanly.
- How are tables handled?
- We emit GitHub-flavoured Markdown tables, which render correctly in GitHub, GitLab, Notion, Bear, Obsidian and most static-site generators.
- What about images?
- Image tags become Markdown image links pointing to the original src. We don't rewrite or download images — bring your own asset hosting.
- Is my HTML uploaded?
- No — Turndown runs entirely in your browser.
- Why are there extra blank lines in my output?
- Markdown spec requires blank lines between block elements. The output is canonicalised — feel free to delete the extras when pasting into your editor; they don't change rendering.