Tested tool guide
Text and writing tools
Checked August 16, 2026
What Markdown Table Generator does, with a checked example
Opens as an empty grid: click to add rows and columns, click into a cell to type, and the tool keeps the underlying markdown in step with what you build. When the table is finished, you copy the pipe-and-dash syntax into a README, issue, or any document. The thing most people discover too late is that tables are not part of original Markdown. They are a GitHub Flavored Markdown extension, so the generated table renders only where GFM is supported. Alignment is set per column, not per cell, and it is expressed by colons in the dash row, not by anything visible in the grid.
Worked example
A concrete input and expected output from the current implementation.
Input
Grid built by clicking and typing: header row "Product | Price | In Stock", body row 1 "Widget | 9.99 | yes", body row 2 "Gadget | 24.50 | no", with center alignment applied to the Price column.
->
Expected output
| Product | Price | In Stock |
| ------- | :---: | -------- |
| Widget | 9.99 | yes |
| Gadget | 24.50 | no |
The first line is the header, the second is the separator row: dashes padded to each column's widest cell, with colons on both sides of the Price column to mark center alignment. The padding spaces are cosmetic and renderers ignore them.