HTML naar Markdown Converter
Converteer HTML-opmaak of een gekopieerde webpagina naar schone, GFM-compatibele Markdown.
Snel antwoord: HTML naar Markdown Converter: zet HTML-opmaak of een gekopieerde webpagina om naar nette, GFM-compatibele Markdown. Werkt volledig in je browser, gratis en zonder registratie.
Laatst bijgewerkt
Goed om te weten
Converting HTML to Markdown is the right move when you want portable, diff-friendly source that renders identically across GitHub, a static-site generator, Notion, or Obsidian. The tool keeps the structural bones — headings, lists, links, images, code blocks, blockquotes, and GFM tables — while discarding the presentational chrome (classes, inline styles, <span> wrappers, font colors) that Markdown has no way to express.
That stripping is a feature, not a bug: pasting rich text copied from a web page or a Word document usually drags along a mess of nested spans and style attributes, and this collapses it to clean prose. It is the standard way to migrate legacy CMS content into a Markdown-based publishing pipeline without hand-editing every article.
A couple of things won't survive. Tables with merged cells (rowspan/colspan) flatten, because Markdown tables are strictly rectangular, and any layout that relied on divs and CSS grid becomes a flat sequence of blocks. Image tags are converted to Markdown links that still point at the original src, so remember to bring your own asset hosting — the images themselves are not downloaded or rewritten.
For the reverse trip, or to preview how your Markdown will render, use the Markdown to HTML converter. The extra blank lines you may notice in the output are the spec-required separators between block elements and do not affect rendering.
Veelgestelde vragen
- Overleeft styling zoals letterkleur?
- Nee — Markdown heeft geen concept van kleur of lettertype. Structurele elementen (koppen, lijsten, code, tabellen, blockquotes) en nadruk (vet, cursief) herstellen schoon.
- Hoe worden tabellen afgehandeld?
- We geven GitHub-geflavourde Markdown-tabellen uit, die correct worden weergegeven in GitHub, GitLab, Notion, Bear, Obsidian en de meeste statische site generators.
- Wat betreft afbeeldingen?
- Afbeeldingstags worden Markdown-afbeeldinglinks die naar de originele bron verwijzen. We herschrijven of downloaden geen afbeeldingen — breng je eigen asset hosting mee.
- Wordt mijn HTML geüpload?
- Nee — Turndown draait volledig in je browser.
- Waarom zijn er extra lege regels in mijn uitvoer?
- De Markdown-specificatie vereist lege regels tussen blokelementen. De uitvoer is gecanonicaliseerd — voel je vrij om de extra's te verwijderen wanneer je in je editor plakt; ze veranderen de weergave niet.