https://devtools.solutions/tools/markup/markdown-table-format.html

Format Markdown Table

Align the columns of a Markdown table by padding cells to consistent widths.

Markdown Table Formatter


    

Example input/output

Input: | Name | Age |\n| Ada | 30 |\n| Bob | 25 |

Output: | Name     | Age |\n|---------|-----|\n| Ada      | 30  |\n| Bob      | 25  |

How it works

This tool parses each row and column in the Markdown table, calculates the maximum width for each column, and pads all cells with spaces to align them. The separator row is also regenerated. Processing runs in your browser.

Common use cases

Related tools