Markdown Table Generator
Create Markdown tables visually. Add rows and columns, set alignment, and import from CSV.
Import from CSV
Table Editor
Markdown Output
| Name | Description | Price |
| ------ | --------------------- | -----: |
| Item 1 | Description of item 1 | $10.00 |
| Item 2 | Description of item 2 | $20.00 |Preview
| Name | Description | Price |
|---|---|---|
| Item 1 | Description of item 1 | $10.00 |
| Item 2 | Description of item 2 | $20.00 |
Markdown Tables - Technical Details
Markdown tables use pipes (|) and hyphens (-) to create grid layouts. Column alignment is set with colons in the separator row: :-- left, :--: center, --: right. Supported by GitHub, GitLab, and most Markdown renderers.
Command-line Alternative
# Basic markdown table syntax\n| Header 1 | Header 2 |\n|----------|----------|\n| Cell 1 | Cell 2 |