Markdown zu HTML Konverter
Konvertiere GitHub-flavored Markdown in sauberes HTML, das Sie überall einfügen können. Live-Vorschau.
Kurze Antwort: Markdown zu HTML Konverter: Wandeln Sie GitHub-kompatibles Markdown in sauberes HTML um, das sich überall einfügen lässt. Mit Live-Vorschau. Läuft vollständig in Ihrem Browser, kostenlos und ohne Anmeldung.
Zuletzt aktualisiert
Gut zu wissen
This converter targets GitHub Flavored Markdown, so the extensions people actually rely on — tables, fenced code blocks with language hints, task lists, strikethrough, and autolinks — all render correctly, not just the bare CommonMark basics. It emits a body fragment rather than a full HTML document, which is precisely what you want when pasting into a CMS, a blog editor, or an email template.
A security note that matters if any of your Markdown originates from other people: raw HTML passes through untouched by design, which is convenient for embedding the odd <div> but means the output is only as trustworthy as the input. Before mounting user-supplied Markdown in a live app, run the resulting HTML through a sanitizer such as DOMPurify to strip script and event-handler attributes.
The conversion is a one-way transform; it will not wrap the fragment in <html> or add a stylesheet, leaving those choices to your own template. When you receive HTML and want to go back to clean Markdown — for example to store documentation in a repository — the companion HTML to Markdown converter uses the same GFM conventions in reverse.
Häufig gestellte Fragen
- Welche Markdown-Variante unterstützen Sie?
- GitHub Flavoured Markdown (GFM) – Tabellen, eingezäunte Codeblöcke, Aufgabenlisten (<code>- [ ]</code>), Durchstreichungen, Autolinks sowie die üblichen Überschriften, Listen, Zitate und Hervorhebungen.
- Wird Inline-HTML in meinem Markdown beibehalten?
- Ja – standardmäßig wird rohes HTML in Markdown unverändert durchgelassen, sodass Sie Markdown mit gelegentlichem <code><div></code> oder <code><img></code> mischen können.
- Ist das HTML sicher, um es ohne Sanitizing einzubetten?
- Behandeln Sie die Ausgabe wie jedes HTML, das Sie einbetten würden: Wenn Ihre Quelle Benutzerinhalte enthalten könnte, führen Sie es durch einen Sanitizer wie DOMPurify, bevor Sie es in Ihrer App einfügen.
- Erzeugt es das umgebende <code><html></code> Dokument?
- Nein – es produziert nur den Körperausschnitt, was Sie normalerweise möchten, wenn Sie in ein CMS oder Blog-Editor einfügen. Wickeln Sie es in Ihre eigene Vorlage, wenn Sie ein vollständiges Dokument benötigen.
- Wird mein Markdown hochgeladen?
- Nein – marked läuft vollständig in Ihrem Browser, sodass nichts Ihr Gerät verlässt.