Convert JSON data to formatted Markdown. Auto-detects structure to create tables for arrays, nested lists for objects, or code blocks.
Paste JSON to see the markdown output
Arrays of objects convert to tables; nested structures convert to lists
[
{"name": "Alice", "role": "Dev"},
{"name": "Bob", "role": "Designer"}
]Converts to:
| name | role | | --- | --- | | Alice | Dev | | Bob | Designer |
{
"project": "App",
"deps": {"react": "18"}
}Converts to:
- **project:** App - **deps:** - **react:** `18`
Smart Format Detection
Array to Table
Nested List Output
Code Block Mode
JSON Formatting
Customizable Output
Convert API response examples to readable markdown tables for documentation.
Transform package.json or config files into formatted markdown for project READMEs.
Convert JSON datasets to markdown tables for reports, wikis, or presentations.
Document complex configuration objects as nested markdown lists.