Générateur de Table Markdown
Construisez des tables Markdown avec un éditeur de style feuille de calcul et un alignement par colonne.
Réponse rapide: Générateur de Table Markdown : créez des tableaux Markdown à l’aide d’un éditeur de type tableur et définissez l’alignement de chaque colonne. Fonctionne entièrement dans votre navigateur, gratuitement et sans inscription.
Dernière mise à jour
Bon à savoir
Tables are the one part of Markdown that almost nobody enjoys typing by hand, because the pipes and dashes have to line up conceptually even though the renderer ignores your spacing. The header row, the delimiter row of dashes, and each body row all need the same number of columns, and the alignment is set entirely by where you place colons in that delimiter row: :--- is left, :---: is centered, and ---: is right. This tool writes all of that for you so you only worry about the content.
The generated syntax is GitHub-Flavored Markdown, which is understood by GitHub, GitLab, Notion, Obsidian, Reddit and most static-site engines. Two things do not travel well, though: GFM tables cannot contain block elements like nested lists or multiple paragraphs inside a cell, and they cannot merge cells the way HTML rowspan can. If you need either, you have to drop down to a raw HTML <table>.
When a cell needs a literal pipe character — say, in a keyboard shortcut or a regular expression — escape it as \| so the parser does not read it as a new column boundary. Line breaks inside a cell use <br> rather than a real newline. Once your table is ready, drop it into the Markdown editor to preview it alongside the rest of your document, or keep the cheatsheet open for the surrounding syntax.
Questions fréquentes
- Le générateur de tableaux est-il gratuit ?
- Oui — gratuit sans inscription.
- Quelle saveur de Markdown ?
- Markdown au goût de GitHub — chaque moteur de rendu qui prend en charge les tableaux GFM (GitHub, GitLab, Notion, Obsidian, …) le rend correctement.
- Mes modifications sont-elles téléchargées ?
- Non — l'éditeur fonctionne dans votre navigateur.
- Puis-je importer un CSV ?
- Pas dans cette version. Conseil : utilisez notre Visualiseur CSV pour copier des cellules, puis collez-les.
- Comment puis-je échapper aux caractères pipe dans les cellules ?
- Utilisez \| à l'intérieur de la cellule — c'est la convention GFM.