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" }
]