Need AI Training/Help?CloudYeti.io/meet
MarkdownMe
Markdown to Excel guide

How to Convert a Markdown Table to CSV

Download a Markdown table as RFC 4180 CSV with values containing commas and quotes escaped properly, ready for any importer.

Direct answer

Paste the table into the converter and press Download .csv. Values containing commas, quotes, or line breaks are quoted and escaped to RFC 4180, so the file imports cleanly into Excel, Google Sheets, a database loader, or any tool that reads CSV.

Open Markdown to Excel converter

When to use this

  • An importer or API expects a CSV upload.
  • You are loading data into a database or BI tool.
  • You want a plain, portable file rather than a workbook.

Steps

  1. Paste the Markdown table into the converter.
  2. Press Download .csv.
  3. Open or upload the file wherever it is needed.
  4. If Excel opens it with everything in one column, check its delimiter setting — some locales default to semicolons.
  5. For a direct Excel paste, use Copy for Excel instead, which avoids delimiter guessing entirely.

Example conversion

Markdown input
| Product | Description | Price |
| --- | --- | ---: |
| Bolt, hex | 10mm, zinc-plated | 0.42 |
| Washer | For "wide" flange | 0.09 |
| Nut | M10, nylon insert | 0.15 |
Tab-separated output Excel splits into cells
Product	Description	Price
Bolt, hex	10mm, zinc-plated	0.42
Washer	For "wide" flange	0.09
Nut	M10, nylon insert	0.15

Common mistakes

  • Do not assume CSV is safe for values containing commas unless they are quoted — this is the single most common cause of a shifted column on import.
  • Do not use CSV when you need formatting, multiple sheets, or a frozen header; download .xlsx instead.
  • Do not double-click a CSV to open it in Excel in a locale that expects semicolons — use Data → From Text/CSV so you can pick the delimiter.

FAQ

What is RFC 4180?
The specification most CSV readers follow: fields separated by commas, records by CRLF, and any field containing a comma, quote, or line break wrapped in double quotes with internal quotes doubled. Following it is what makes a file import predictably.
Why CSV rather than XLSX?
CSV is universal and diff-friendly, so it suits importers, data pipelines, and version control. XLSX suits people who will open the file and read it.
Are the line endings CRLF?
Yes, as the specification requires. Every mainstream tool handles it, including on macOS and Linux.
Does the header row get included?
Yes, when the source table has one. Most importers expect a header line and let you map columns from it.

Related Excel guides