Tables
Standard GFM (GitHub Flavored Markdown) tables work out of the box:
md
| Name | Role |
| ------ | -------- |
| Alice | Engineer |
| Bob | Designer |Renders as:
| Name | Role |
|---|---|
| Alice | Engineer |
| Bob | Designer |
Column Alignment
Use colons in the separator row to control text alignment:
md
| Left | Center | Right |
| :----- | :----: | ----: |
| Alice | 42 | $100 |
| Bob | 17 | $250 |Renders as:
| Left | Center | Right |
|---|---|---|
| Alice | 42 | $100 |
| Bob | 17 | $250 |
| Syntax | Alignment |
|---|---|
:--- | Left |
:---: | Center |
---: | Right |
--- | Default (left) |
Inline Formatting
Cells support all the usual inline formatting — bold, italic, strikethrough, inline code, and links:
md
| Feature | Status |
| ------------ | --------------- |
| **Images** | `Supported` |
| _Videos_ | ~~Coming soon~~ |Renders as:
| Feature | Status |
|---|---|
| Images | Supported |
| Videos | |