Markdown Table Generator
Build Markdown tables visually or paste CSV/TSV data. Set per-column alignment, preview the rendered table live, and copy clean, padded Markdown.
Input mode
Rows3
Columns3
The first row is the table header.
Column alignment
Markdown
Live Preview
| Header 1 | Header 2 | Header 3 |
|---|---|---|
Frequently Asked Questions
- How do I create a Markdown table?
- Use the visual grid editor to type into the cells — the first row is the header — or switch to paste mode and drop in CSV or TSV data. The Markdown table is generated live below with a rendered preview.
- How do I set column alignment in a Markdown table?
- Pick left, center, or right for each column. Alignment is written into the separator row using colons: :--- for left, :---: for center, and ---: for right.
- Can I convert CSV to a Markdown table?
- Yes. Switch to the paste mode, paste comma- or tab-separated data, and the delimiter is detected automatically. The rows become a properly formatted Markdown table.
- Why are the table columns padded with spaces?
- The generator pads every cell so the pipes line up vertically. The table renders identically either way, but the padded source is far easier to read and edit in plain text.
- What happens if my data contains a pipe character?
- Pipe characters inside cells are escaped as \| so they display as literal pipes instead of breaking the table structure.