Turn any Markdown table into a JSON array. Paste it in, get JSON out. Runs in your browser, nothing gets uploaded.
JSON output will appear here
Paste Markdown table on the left to see conversion
If you've ever copied a table from a README and then spent 10 minutes manually wrapping values in curly braces and quotes, you know the pain. This tool reads the pipe-delimited table format, grabs the headers, and spits out a clean JSON array you can drop straight into your codebase. For the reverse direction, there's a JSON to Markdown converter too.
There's no backend here. The page loads, and from that point on, all the parsing runs in your browser's JavaScript engine. I built it this way because I didn't want anyone worrying about pasting internal docs or config tables into a web form that phones home.
Got a wiki with feature comparison tables? Export the Markdown, convert it here, and feed the JSON into your app. Working with spreadsheets? Check out the Markdown to CSV converter or the Excel to Markdown tool to move data between formats without re-typing anything.
Writing a table in Markdown is way faster than hand-crafting 20 JSON objects. I'll sketch out a table of users or products, convert it, and have mock data ready in under a minute. Way less error-prone than typing brackets and commas manually.
If your seed data lives in a README or wiki, copy the table, convert it to JSON, and pass it directly to your seeding script. Works with Node.js, Python, Rails — anything that can read JSON.
Project docs often have tables listing environment variables, feature flags, or CI/CD settings. Instead of copying them line by line into a config file, convert the whole table and reshape the JSON as needed.
Need to populate a React select dropdown or a Vue data table from a spec doc? Convert the Markdown table to JSON and use the array directly as component props. Saves you from typing it out by hand.
Other converters you might need
Go the other direction — turn JSON arrays into Markdown tables.
Take JSON data and export it as an .xlsx spreadsheet.
Got a CSV file? Turn it into a Markdown table.
Pull data out of Markdown tables as comma-separated values.
Drop in a spreadsheet and get Markdown tables back.
Convert Markdown tables straight into Excel files.