Markdown Tabelgenerator
Bouw Markdown-tabellen met een spreadsheet-stijl editor en per-kolom uitlijning.
Snel antwoord: Markdown Tabelgenerator: maak Markdown-tabellen met een editor in spreadsheetstijl en uitlijning per kolom. Werkt volledig in je browser, gratis en zonder registratie.
Laatst bijgewerkt
Goed om te weten
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.
Veelgestelde vragen
- Is de tabelgenerator gratis?
- Ja — gratis zonder registratie.
- Welke Markdown-variant?
- GitHub-variant Markdown — elke renderer die GFM-tabellen ondersteunt (GitHub, GitLab, Notion, Obsidian, …) rendert het correct.
- Worden mijn bewerkingen geüpload?
- Nee — de editor draait in je browser.
- Kan ik een CSV importeren?
- Niet in deze versie. Tip: gebruik onze CSV Viewer om cellen te kopiëren en plak ze dan hier.
- Hoe ontsnap ik aan pipe-tekens in cellen?
- Gebruik \| binnen de cel — dat is de GFM-conventie.