Tools

Markdown table generator

Build a Markdown table visually. Add rows and columns, type cell contents, set per-column alignment, then copy the syntax. The output works in every Markdown flavour that supports GitHub Flavoured Markdown tables.

Markdown output
| Header 1 | Header 2 | Header 3 |
| :------- | :------- | :------- |
| Cell 1.1 | Cell 1.2 | Cell 1.3 |
| Cell 2.1 | Cell 2.2 | Cell 2.3 |
| Cell 3.1 | Cell 3.2 | Cell 3.3 |

Markdown table syntax in 30 seconds

A Markdown table is a header row, a divider row that sets alignment, and any number of body rows. Pipes separate columns; the divider row uses colons to align:

| Left aligned | Centered | Right aligned |
| :----------- | :------: | ------------: |
| Cell         | Cell     | Cell          |
| More text    | More     |          More |

Compatibility

  • GitHub & GitLab (rendered in issues, PRs, READMEs).
  • Obsidian, VS Code preview, Typora.
  • Notion (via Markdown import).
  • md2document - paste the output into the editor and export a styled PDF.