How markdown table generator works
Markdown tables are a compact way to show tabular data in README files, issues, and docs. Writing them by hand is fiddly because every row needs pipes and a separator row with dashes, so this generator builds them from plain data.
Paste your rows, choose the delimiter (comma, tab, pipe, or whitespace), and say whether the first row is a header. The tool splits each row, pads short rows so columns line up, and escapes any literal pipe characters in your data so they do not break the table.
The output is a standard GitHub-flavored markdown table: a header row, a separator row of dashes, then one row per data line. Click Copy to paste it straight into a README, issue, or markdown document.