JSON to Markdown Table — Guide
GitHub Flavored Markdown (GFM) tables are the standard way to display tabular data in README files, GitHub wikis, and many documentation platforms. This tool converts JSON arrays directly into GFM table syntax.
Markdown Table Syntax
| Name | Age | City |
|-------|-----|----------|
| Alice | 30 | New York |
| Bob | 25 | London |
Column Alignment
Colons in the separator row control alignment: :--- = left, :---: = center, ---: = right. Choose Auto to align numeric columns right and text left.