CSV Tools
CSV to Markdown Table
Convert CSV data into a formatted Markdown table for docs and READMEs.
Loading tool…
What is CSV → MD Table?
Converts CSV rows and columns into a properly formatted Markdown pipe table, ready to paste into a README or documentation.
How it works
Parse the CSV, then render as a Markdown table with header row, alignment row, and data rows. Pipe characters within cells are escaped.
- Paste CSV. Paste CSV data.
- Get Markdown. The Markdown table appears instantly. Copy or download.
Examples
README table
name,age Alice,30 → | name | age | | :--- | :--- | | Alice | 30 |
Common mistakes
Cells with pipes
Pipe characters within cells are automatically escaped with backslash.
Alternatives
JSON to Markdown Table
For converting JSON arrays to Markdown tables.
Frequently asked questions
Can I set column alignment?
Currently all columns are left-aligned. Custom alignment coming soon.