Generate markdown tables with custom rows, columns, and alignment.
Markdown tables use pipes (|) and hyphens (-) to create structured data tables. They're widely supported in GitHub, GitLab, documentation sites, and markdown processors.
Basic structure:
| Header 1 | Header 2 | Header 3 | |----------|----------|----------| | Cell 1 | Cell 2 | Cell 3 | | Cell 4 | Cell 5 | Cell 6 |
Control column alignment using colons in the separator row:
|:---------| (default)|:--------:||---------:|| Name | Age | City | |---------|-----|----------| | Alice | 30 | New York | | Bob | 25 | London | | Charlie | 35 | Tokyo |