Create structured data with rows and columns. Tables are part of the extended Markdown specification.
Create tables using pipes (
| Name | Age | City |
|---|---|---|
| Alice | 30 | London |
| Bob | 25 | Paris |
| Carol | 35 | Berlin |
Control column alignment by adding colons to the separator row: :--- for left, :---: for center, ---: for right.
| Left | Center | Right |
|---|---|---|
| A | B | C |
| D | E | F |
You can use inline Markdown formatting inside table cells: bold, italic, code, links, and strikethrough.
| Feature | Status | Notes |
|---|---|---|
| Bold | code | italic |
| Link | Normal |
Tables can have more columns and rows for complex data. Here's a pricing table example.
| Plan | Price | Storage | Users |
|---|---|---|---|
| Free | $0/mo | 5 GB | 1 |
| Pro | $9/mo | 50 GB | 5 |
| Business | $29/mo | 500 GB | 25 |
| Enterprise | Custom | Unlimited | Unlimited |