Tables
Markdown tables — basic, aligned, and with rich content inside cells.
GitHub-flavoured markdown tables are supported. Keep them narrow enough to read on a phone — if a table needs horizontal scrolling, consider a definition list or a series of subheadings instead.
A basic table
| Module | Status | Owner |
|---|---|---|
| Clients | Stable | Core team |
| Sales | Stable | Core team |
| Auction | Stable | Real-time team |
| Reports | Beta | Core team |
| API Keys | Stable | Platform team |
Column alignment
The colons in the separator row control alignment. Left-aligned is the default.
| Left-aligned | Centered | Right-aligned |
|---|---|---|
| Free | Beta | $0 |
| Pro | Stable | $49 |
| Team | Stable | $149 |
| Enterprise | Stable | Contact us |
Rich content in cells
Cells can hold inline formatting — bold, italic, inline code, links, even small images. Block-level content (lists, fenced code, blockquotes) is not supported inside cells.
| Feature | Default | Notes |
|---|---|---|
| Sessions | iron-session | Cookie-based, see installation. |
| Database | PostgreSQL 15+ | Managed Postgres works fine — we test on Supabase and Neon. |
| Real-time | Socket.IO | Redis adapter required once you cross a few hundred concurrents. |
| Email sender | none | Configure via SMTP or the Resend integration. |
| Storage | local filesystem | S3-compatible providers supported in storage.driver. |
A wider data table
When a table genuinely needs more columns, give it room to breathe. The renderer wraps narrow tables and scrolls wider ones horizontally on small screens.
| Plan | Modules | Users | Storage | Support | Price (mo) |
|---|---|---|---|---|---|
| Free | Clients, Tickets | 3 | 1 GB | Community | $0 |
| Starter | Clients, Tickets, Invoices | 10 | 10 GB | $29 | |
| Pro | Everything except Auction | 50 | 50 GB | Email + chat | $99 |
| Team | Everything | 250 | 250 GB | Priority | $249 |
| Enterprise | Everything + custom | — | 1 TB+ | Dedicated rep | Contact us |
For tabular data with hundreds of rows, render it from your own data source as a real table component on a custom page — markdown tables are for reference content, not analytics.