Draft42 Docs

Tables

Standard GFM (GitHub Flavored Markdown) tables work out of the box:

md
| Name   | Role     |
| ------ | -------- |
| Alice  | Engineer |
| Bob    | Designer |

Renders as:

NameRole
AliceEngineer
BobDesigner

Column Alignment

Use colons in the separator row to control text alignment:

md
| Left   | Center | Right |
| :----- | :----: | ----: |
| Alice  | 42     | $100  |
| Bob    | 17     | $250  |

Renders as:

LeftCenterRight
Alice42$100
Bob17$250
SyntaxAlignment
:---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:

FeatureStatus
ImagesSupported
VideosComing soon