CSV ↔ Markdown Table Converter

Convert CSV data to a formatted Markdown table and back. Handles headers, alignment, and escaping.

CSV
Markdown Table
💡 Definition

CSV & Markdown Tables

  • CSV (Comma-Separated Values) is a simple tabular format.
  • Markdown tables use pipes (|) and dashes (-) to create formatted tables in documentation.
  • This tool converts between both formats instantly.
📖 How to use

Step by Step

  • Paste CSV data in the left panel (comma, tab, or semicolon separated)
  • A formatted Markdown table appears on the right
  • The first row is treated as the header
  • Paste a Markdown table on the right to get CSV
🎯 Use cases

When to use

  • Converting spreadsheet data for GitHub READMEs
  • Formatting data for documentation
  • Converting Markdown tables back to CSV for Excel
  • Quick table formatting for blogs

Frequently Asked Questions

What delimiters are supported?
The tool auto-detects commas, tabs, and semicolons as delimiters. It uses the most frequent delimiter found in the first line.
Does it handle quoted fields?
Yes. Fields containing commas can be wrapped in double quotes (e.g., "New York, NY") and will be parsed correctly.