Skip to content
ErgaLab
Markdown

Markdown Table Generator

Edit headers and cells directly in a spreadsheet-like grid, set per-column alignment, and get clean, column-aligned Markdown output.

Table

Markdown output

| Name  | Role     | Location |
| ----- | -------- | -------- |
| Ada   | Engineer | London   |
| Grace | Admiral  | New York |

How it works

Markdown tables are easy to read once written, but tedious to hand-align — every column needs to line up with dashes and pipes. This tool renders a live grid you edit directly; the Markdown output is generated with every column padded to its widest cell, so the raw source is as readable as the rendered table.

Click the alignment icon in any header to cycle through default, left, center, and right alignment — this controls the :---, :---:, and ---: separator syntax that GitHub-Flavored Markdown uses to align columns.

Examples

Basic table

No alignment set.

| Name | Role |
| ---- | ---- |
| Ada  | Eng  |

Right-aligned numbers

Useful for numeric columns.

| Item | Price |
| ---- | ----: |
| Pen  |  1.50 |

Frequently asked questions