Paste a Markdown pipe table, get RFC 4180 CSV: escaped pipes, quoted commas, comma / semicolon / tab delimiters, all in your browser
- Runs locally
- Category Format Converter
- Best for Turning pasted content or local files into a handoff-friendly format.
What this tool does
Markdown Table to CSV converts a GitHub-flavoured pipe table into clean CSV you can open in Excel, Google Sheets, Numbers, or feed to a script. Paste a table like `| Name | City |` with its `|---|` separator row and the tool parses each row, drops the alignment line, and writes one CSV record per data row. It does the fiddly parts most quick converters get wrong: an escaped pipe `\|` inside a cell stays a literal vertical bar instead of splitting the column, optional leading and trailing pipes are handled, and ragged rows are padded so every record has the same column count. The CSV side follows RFC 4180, so a cell holding a comma, a double quote, or a line break is wrapped in quotes with embedded quotes doubled, which keeps the file from breaking when a spreadsheet reads it back. Pick comma, semicolon, or tab as the delimiter, convert just the first table or every table in the document, then copy or download. Nothing is uploaded; the whole conversion runs as JavaScript in the page.
Tool details
- Input
- Files + Text + Structured content
- The page exposes text boxes, numeric controls, file pickers, or structured inputs depending on the tool.
- Output
- Live result + Copy + Download
- The result area focuses on usable output, with copy, download, or preview actions when supported.
- Privacy
- Browser-side processing
- The main tool logic does not call an external API, so inputs normally stay in the current tab.
- Save / share
- Shareable URL state
- Key settings are encoded in the URL so another person can reopen the same setup.
- Performance budget
- Initial JS <= 9 KB
- No WASM budget is declared, keeping the tool quick to open on mobile.
- Best fit
- Format Converter · Developer
- Category and role tags drive related tools, internal links, and quick fit checks.
How to use
-
1. Input
Paste or drop your content into the tool panel.
-
2. Process
Click the button. All processing is local in your browser.
-
3. Copy / Download
Copy the result or download to disk in one click.
How Markdown Table to CSV fits into your work
Use it when the main problem is getting content from one practical format into another.
Conversion jobs
- Turning pasted content or local files into a handoff-friendly format.
- Previewing a conversion before you use it in a larger workflow.
- Cleaning small format mismatches without opening a full editor.
Conversion checks
- Try a small sample first when the source format is messy.
- Check character encoding, separators, and line endings after conversion.
- Keep the source until the converted output has been reviewed.
Good next steps
These links move the current task into a more complete workflow.
- 1 CSV to Markdown Table Convert uploaded or pasted CSV into clean Markdown tables with quoted-cell support, locally in the browser. Open
- 2 Markdown Table Generator Build Markdown tables visually — add/remove rows, column alignment, paste from Excel / CSV — browser-only Open
- 3 HTML Table to CSV Converter HTML table to CSV converter — paste HTML or full page source, extract all tables, get CSV/TSV/JSON/Excel-ready output with header detection + colspan/rowspan handling. Open
Real-world use cases
Lift a table out of a README into a spreadsheet
A repo's README lists supported versions, pricing tiers, or API rate limits as a Markdown table, and you need it in a sheet to sort or chart it. Paste the table, download the CSV, and open it in Excel or Google Sheets. The escaped-pipe and quoting handling means a row like `| /v1 \| /v2 | 1,000 req/min |` survives intact instead of shattering into the wrong columns.
Move LLM or ChatGPT table output into your data tools
Chat assistants love to answer with Markdown tables. When you want that comparison of frameworks or that generated test matrix as actual data, paste the reply here and get CSV you can load into pandas, a database, or a BI tool, without retyping a single cell.
Feed documentation tables to a script or import job
You maintain config, feature flags, or a glossary as a Markdown table in your docs, and a build step needs it as CSV. Convert it once, wire the .csv into your importer, and the table stays human-editable in Markdown while the pipeline reads the structured export.
Hand a non-technical teammate the data behind a doc table
A teammate wants the numbers from a Markdown table in your wiki but works in Excel, not Markdown. Convert to CSV and send the file. They open it, filter and pivot in the tool they know, and you never had to copy cells by hand or screenshot the table.
Common pitfalls
Pasting only the data rows and forgetting the `|---|` separator line. Without it the block still parses, but the first data row gets read as the header. Always include the dashed alignment row right under the header so the tool knows where the header ends.
Typing a real vertical bar inside a cell without escaping it. An unescaped `|` is a column boundary, so `w | h` becomes two columns. Write `w \| h` in the Markdown source and it stays one cell that reads `w | h`.
Assuming the comma delimiter is right for every Excel. Many European or localized Excel installs split CSV on semicolons. If your columns land in one cell after a double click, switch the delimiter to semicolon before downloading.
Privacy
Parsing, CSV serialization, copy, and download all run as JavaScript in your browser tab. The Markdown you paste never leaves the page and is never written into the shareable URL, because tables often carry internal numbers, emails, or ticket data. Only the cosmetic options, the delimiter and the convert-every-table switch, are stored in the URL, so a shared link reproduces your settings without exposing your data.
FAQ
Tool combos
Folks in your role tend to reach for these alongside this tool.
- Add Line Numbers Number every line of pasted text — set start, step and separator, zero-pad to align, skip blanks, or strip numbers back off — browser-only
- AES Text Encryptor Encrypt & decrypt text with a password — AES-256-GCM + PBKDF2 via WebCrypto — 100% in your browser, nothing uploaded
- Affine Cipher Encoder & Decoder Encrypt and decrypt the ax+b affine cipher with live modular-inverse check, browser-only
- Age Difference Calculator The exact gap between two birthdays — years/months/days, percentage, and the date one person is twice the other's age — browser-only