Markdown-Spickzettel
Ein druckbares Referenzblatt, das jede gängige Markdown-Konstruktion abdeckt – Überschriften, Listen, Tabellen, Code und mehr.
Kurze Antwort: Markdown-Spickzettel: eine druckbare Übersicht mit allen gängigen Markdown-Elementen – Überschriften, Listen, Tabellen, Code und mehr. Läuft vollständig im Browser, kostenlos, keine Anmeldung erforderlich.
Zuletzt aktualisiert
Gut zu wissen
Markdown started as one person's shorthand for writing HTML by hand, and that heritage still shows: the syntax deliberately mirrors how people already format plain-text emails. Underlining a line with equals signs makes an H1, asterisks around a word make it bold, and a greater-than sign starts a blockquote. Because the rules are so few, most of what trips people up is whitespace — a list needs a blank line before it, and a hard line break needs two trailing spaces (or a backslash in newer parsers).
The single biggest source of confusion is that there is no one Markdown. This reference targets GitHub-Flavored Markdown (GFM), which adds tables, task lists, strikethrough and automatic URL linking on top of the original CommonMark spec. Plain CommonMark, the version used by many static-site generators, does not understand pipe tables or - [ ] checkboxes, so a snippet that renders perfectly in a GitHub issue can look broken in a different tool.
Keep a couple of escape rules handy. To show a literal asterisk, underscore or backtick rather than have it interpreted, put a backslash in front of it. To embed code that itself contains backticks, wrap it in a longer run of backticks than the code uses. When you are ready to move past a static reference and actually draft something, the live Markdown editor shows your rendered output side by side, and the table generator handles the one construct that is genuinely tedious to type by hand.
Häufig gestellte Fragen
- Ist das Cheatsheet kostenlos?
- Ja — kostenlos ohne Anmeldung.
- Welchen Flavor deckt es ab?
- GitHub-flavored Markdown — der De-Facto-Standard.
- Kann ich es ausdrucken?
- Ja — nutzen Sie das Druckdialogfeld Ihres Browsers. Das Layout ist freundlich für A4 und Letter Größen.
- Werden meine Tastatureingaben gespeichert?
- Nichts hier ist interaktiv über das Browsen hinaus — es gibt nichts zu speichern.
- Wo kann ich mehr erfahren?
- Die Dokumentation von GitHub und die CommonMark-Spezifikation sind ausgezeichnete nächste Lektüren.