Markdown-Tabellengenerator
Erstelle Markdown-Tabellen mit einem tabellenartigen Editor und Spaltenausrichtung pro Spalte.
Kurze Antwort: Markdown-Tabellengenerator: Erstellen Sie Markdown-Tabellen mit einem Editor im Tabellenkalkulationsstil und spaltenweiser Ausrichtung. Läuft vollständig in Ihrem Browser, kostenlos und ohne Anmeldung.
Zuletzt aktualisiert
Gut zu wissen
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.
Häufig gestellte Fragen
- Ist der Tabellengenerator kostenlos?
- Ja — kostenlos ohne Anmeldung.
- Welcher Markdown-Geschmack?
- GitHub-aromatisierter Markdown — jeder Renderer, der GFM-Tabellen unterstützt (GitHub, GitLab, Notion, Obsidian, …) rendert es korrekt.
- Werden meine Bearbeitungen hochgeladen?
- Nein — der Editor läuft in Ihrem Browser.
- Kann ich eine CSV importieren?
- Nicht in dieser Version. Tipp: Verwenden Sie unseren CSV-Viewer, um Zellen zu kopieren, und fügen Sie sie dann ein.
- Wie entkomme ich Pipe-Zeichen in Zellen?
- Verwenden Sie \| innerhalb der Zelle — das ist die GFM-Konvention.