JSON to Markdown Table
Convert JSON arrays to Markdown tables instantly
Paste a JSON array of objects
| name | role | location | | --- | --- | --- | | Alice | Developer | New York | | Bob | Designer | San Francisco | | Charlie | Manager | Chicago |
| name | role | location |
|---|---|---|
| Alice | Developer | New York |
| Bob | Designer | San Francisco |
| Charlie | Manager | Chicago |
How to Use
- Paste your JSON array in the input area
- The Markdown table is generated automatically
- Copy the output and use it in your documents
Expected JSON Format
The input should be a JSON array of objects:
[
{ "column1": "value1", "column2": "value2" },
{ "column1": "value3", "column2": "value4" }
]