Fiche de Référence Markdown
Une référence imprimable couvrant chaque construction Markdown courante — titres, listes, tables, code et plus.
Réponse rapide: Fiche de Référence Markdown : une référence imprimable couvrant toutes les syntaxes Markdown courantes — titres, listes, tableaux, code et bien plus. Fonctionne entièrement dans votre navigateur, gratuitement et sans inscription.
Dernière mise à jour
Bon à savoir
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.
Questions fréquentes
- La feuille de triche est-elle gratuite ?
- Oui — gratuite sans inscription.
- Quel goût couvre-t-elle ?
- Markdown au goût de GitHub — le standard de facto.
- Puis-je l'imprimer ?
- Oui — utilisez la boîte de dialogue d'impression de votre navigateur. La mise en page est adaptée aux formats A4 et Lettre.
- Mes frappes sont-elles sauvegardées ?
- Rien ici n'est interactif au-delà de la navigation — il n'y a rien à sauvegarder.
- Où puis-je en apprendre davantage ?
- Les docs de GitHub et la spécification CommonMark sont d'excellentes lectures suivantes.