Tables
Standard GFM tables rendered as styled, email-safe HTML.
Standard GFM (GitHub Flavored Markdown) tables are supported and rendered as styled, email-safe HTML tables:
| Name | Role | Status |
| ----- | ---------- | ------ |
| Alice | Engineer | Active |
| Bob | Designer | Active |
| Carol | Manager | Away |Column Alignment
Control column alignment using colons in the separator row — left-align with :---, center with :---:, right-align with ---::
| Item | Qty | Price |
| :----------------------- | ----: | -------: |
| Monstera Deliciosa, 6" | 1 | $42.00 |
| Ceramic Pot, White | 1 | $18.00 |
| **Total** | | **$60.00** |Automatic Styling
Tables are automatically styled with your theme colors:
- Header row — bold text with a 2px bottom border
- Body rows — subtle 1px bottom borders between rows
- Cell padding — consistent 8px vertical, 12px horizontal
All colors and borders inherit from your theme, so tables match the rest of your email without any extra configuration.
Tips
Keep tables simple and narrow for the best results on mobile. Very wide tables may require horizontal scrolling on small screens — stick to 2–4 columns when possible.