Markdown Table Generator
Build tables visually and copy the Markdown syntax instantly. Set column alignment, add or remove rows and columns.
Markdown
Advertisement
Frequently Asked Questions
Markdown tables are a GFM (GitHub Flavored Markdown) extension, not part of the original CommonMark spec. They're supported in: GitHub, GitLab, Bitbucket, Notion, Obsidian, VS Code, Jupyter, Reddit, Discord, and most static site generators (Hugo, Jekyll, Gatsby with remark-gfm).
In the separator row (---|---), colons define alignment:
--- = left (default). :--- = explicit left. ---: = right. :---: = center. Alignment only affects visual rendering in Markdown viewers — the underlying data is the same.Yes, most renderers support inline Markdown inside table cells: **bold**, *italic*, `code`, and links. To include a literal pipe character (|) inside a cell, escape it with \|. Block-level elements (code fences, lists) are not supported inside table cells.