Table
Tables use standard Markdown syntax — there is no table: keyword. Figdown groups consecutive Markdown lines and passes them through the Markdown renderer, so standard pipe tables work anywhere on the page.
Basic usage
| Name | Role | Status |
|--------|---------|--------|
| Alice | Admin | Active |
| Bob | Editor | Active |
| Carol | Viewer | Paused |
Inside a card
card:
## Team members
| Name | Role | Status |
|--------|---------|--------|
| Alice | Admin | Active |
| Bob | Editor | Active |
| Carol | Viewer | Paused |
outline button: Manage team
Column alignment
Use : in the separator row to align columns:
| Left | Center | Right |
|:-------|:-------:|-------:|
| A | B | C |
| D | E | F |
note
Consecutive Markdown lines — including multi-line tables — are joined into a single block before rendering. This means a blank line between table rows would break the table; keep all rows together without blank lines.