Convert file to Markdown table
Upload your file below to convert it to a markdown table
.json and .csvFile examples
JSON file: 2D Array format
[
[
"Product",
"Price",
"Next delivery"
],
[
"Bread",
10,
"Today"
],
[
"Butter",
"25",
"Tomorrow"
],
[
"Milk",
"25",
"Tomorrow"
],
[
"Ice cream",
"40",
"In 5 days"
]
]
JSON file: Array of objects format
[
{
"Product": "Bread",
"Price": 10,
"Next delivery": "Today"
},
{
"Product": "Butter",
"Price": "25",
"Next delivery": "Tomorrow"
},
{
"Product": "Milk",
"Price": "25",
"Next delivery": "Tomorrow"
},
{
"Product": "Ice cream",
"Price": "40",
"Next delivery": "In 5 days"
}
]
CSV
Product,Price,Next delivery
Bread,10,Today
Butter,25,Tomorrow
Milk,25,Tomorrow
Ice cream,40,In 5 days