Tables

Organize your data in style with GitHub-flavored tables.

Tables are a powerful way to organize and present data. With full support for GitHub Flavored Markdown, you can easily create clean, responsive grids to display properties, comparisons, or datasets. Control column alignment and headers with simple syntax, ensuring your information looks professional and is easy to read.

Basic Table

PropertyDescriptionTypeDefault
titleThe title of the tablestring-
descriptionThe description of the tablestring-

Alignment

LeftCenterRight
Left-aligned textCenter-aligned textRight-aligned text
Left-aligned textCenter-aligned textRight-aligned text

Output Markdown

mdx
| Property | Description | Type | Default |
| --- | --- | --- | --- |
| `title` | The title of the table | `string` | - |
| `description` | The description of the table | `string` | - |

| Left | Center | Right |
| :--- | :---: | ---: |
| Left-aligned text | Center-aligned text | Right-aligned text |
| Left-aligned text | Center-aligned text | Right-aligned text |

Published on Feb 8, 2026