Markdown-spiekbriefje
Een afdrukbare referentie die elk veelvoorkomend Markdown-construct dekt — koppen, lijsten, tabellen, code en meer.
Snel antwoord: Markdown-spiekbriefje: een afdrukbaar overzicht van alle veelgebruikte Markdown-elementen — koppen, lijsten, tabellen, code en meer. Werkt volledig in je browser, gratis en zonder aanmelding.
Laatst bijgewerkt
Goed om te weten
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.
Veelgestelde vragen
- Is de cheatsheet gratis?
- Ja — gratis zonder aanmelding.
- Welke variant wordt behandeld?
- GitHub-flavored Markdown — de de facto standaard.
- Kan ik het afdrukken?
- Ja — gebruik de afdrukdialoog van je browser. Het lay-out is vriendelijk voor A4- en Letterformaten.
- Worden mijn toetsaanslagen opgeslagen?
- Niets hier is interactief buiten browsen — er is niets om op te slaan.
- Waar kan ik meer leren?
- De documentatie van GitHub en de CommonMark-specificatie zijn uitstekende volgende leesmaterialen.