πŸ”„

Markdown to JSON Converter

Paste a Markdown table and instantly get a JSON array of objects. Free, browser-based, perfect for developers.

JSON Output

Features

  • Converts Markdown table headers to JSON object keys
  • Each data row becomes a JSON object in the output array
  • Handles escaped pipe characters in cell values
  • Skips the separator row automatically
  • Output is valid JSON β€” ready to paste into code or APIs
  • 100% browser-based β€” no data leaves your device

Markdown to JSON: Example

Markdown table input:

| Name  | Score | Grade |
| ----- | ----- | ----- |
| Alice | 95    | A     |
| Bob   | 82    | B     |

JSON output:

[
  { "Name": "Alice", "Score": "95", "Grade": "A" },
  { "Name": "Bob", "Score": "82", "Grade": "B" }
]

Related Tools