Skip to main content

Tables

GFM tables use pipes (|) to separate columns and a delimiter row of dashes.

Basic table

| Feature | Markdown | Notes |
| --- | --- | --- |
| Live preview | Yes | Vertical and tab layouts |
| Toolbar | Yes | Bold, lists, links, and more |
| Task lists | Yes | GFM task list syntax |

Column alignment

Use colons in the delimiter row to align columns:

| Left | Center | Right |
| :--- | :---: | ---: |
| a | b | c |
| longer text | centered | right |
SyntaxAlignment
:---Left
:---:Center
---:Right

Toolbar

Click the table button or press Mod-Alt-t to insert a starter 3×3 table at the cursor.

Tips

  • The outer pipes on each row are optional but improve readability.
  • Cell content can include inline formatting such as bold and code.
  • Tables cannot contain block-level elements (nested lists or code blocks) inside cells.