Writing Markdown tables by hand is fiddly — counting pipes, matching dashes, lining up columns. This generator turns a simple grid into clean GitHub Flavored Markdown you can paste straight into a README, GitHub issue, wiki page or any Markdown document, with per-column alignment handled for you.
How it works
Set the number of columns and name each header, then choose left, center or right alignment per column and fill in the cells. The tool builds the output as:
- a header row of cell values between pipes,
- a separator row of dashes that also encodes alignment —
---(left),:---:(center) or---:(right), - one data row per grid row.
Cells are space-padded so the columns line up in the raw text; renderers ignore the padding, but it keeps the source readable. The Markdown updates live and a Copy button puts it on your clipboard.
Example
Two columns, the second right-aligned:
| Item | Price |
| :----- | ----: |
| Coffee | 3.50 |
| Tea | 2.80 |
| Alignment | Separator markup |
|---|---|
| Left | :--- or --- |
| Center | :---: |
| Right | ---: |
Everything runs locally in your browser — nothing is uploaded, so it is safe for private notes and internal documentation.