Markdown Table Cheatsheet
The essential quick-reference cheat sheet for GitHub Flavored Markdown (GFM) tables. Copy ready-to-use snippets, toggle live table previews, search by syntax keyword, or export the entire guide as a single markdown file or print to PDF.
Standard GFM Table
CoreThe standard GitHub Flavored Markdown table structure with header, delimiter, and rows.
| Header 1 | Header 2 | Header 3 |
| :------- | :------- | :------- |
| Row 1 A | Row 1 B | Row 1 C |
| Row 2 A | Row 2 B | Row 2 C |Compact Minimal Table
CoreSpace-saving compact markdown with minimal whitespace padding.
|Name|Role|Dept|
|---|---|---|
|Alice|Lead|Eng|
|Bob|Design|UI|Left, Center, & Right Alignments
AlignmentColons in the delimiter line dictate column alignments (:---, :---:, ---:).
| Left Aligned | Centered Status | Right (Numbers) |
| :----------- | :-------------: | --------------: |
| Server Alpha | ONLINE | 99.9% |
| Server Beta | PENDING | 85.4% |
| Server Gamma | OFFLINE | 0.0% |Escaping Literal Pipe Characters
FormattingUse a backslash (\|) to display a literal pipe character inside a cell without breaking columns.
| Command | Syntax Example | Notes |
| :------ | :------------- | :---- |
| Logical OR | `a \|\| b` | Boolean operator |
| Pipe Filter | `grep \| awk` | Shell pipeline |Multiline Cells via HTML <br>
FormattingStandard markdown does not allow raw newlines in cells. Use <br> or <br/> for line breaks.
| Task ID | Description & Action Steps | Owner |
| :------ | :------------------------- | :---- |
| AGY-101 | 1. Initialize repository<br>2. Install dependencies<br>3. Run test suite | Alex |
| AGY-102 | Refactor database schema<br><strong>Warning:</strong> Requires downtime | Maria |Inline Text Styling & Links
FormattingMarkdown bold, italics, strikethrough, inline code, and links are fully supported inside cells.
| Formatting Type | Syntax Markdown | Rendered Look |
| :-------------- | :-------------- | :------------ |
| Bold Text | `**Priority High**` | **Priority High** |
| Italicized | `*In Review*` | *In Review* |
| Strikethrough | `~~Deprecated~~` | ~~Deprecated~~ |
| Code Snippet | ``const x = 42;`` | `const x = 42;` |
| Hyperlink | `[Documentation](https://example.com)` | [Docs](https://example.com) |Checklists & Task Items
TemplatesTask item checkboxes (- [ ] and - [x]) render interactive checkboxes in GitHub & GitLab.
| Status | Milestone / Deliverable | Target Date |
| :----: | :---------------------- | :---------- |
| [x] | Alpha Release & Architecture Review | 2026-Q1 |
| [x] | Beta User Testing & Bug Fixes | 2026-Q2 |
| [ ] | Production Launch & CDN Routing | 2026-Q3 |REST API Endpoint Specification
TemplatesIndustry blueprint for documenting REST API parameters and HTTP methods.
| Endpoint | Method | Parameter | Type | Required | Description |
| :------- | :----: | :-------- | :--: | :------: | :---------- |
| `/v1/users` | `GET` | `limit` | int | No | Maximum records to return (1-100) |
| `/v1/users` | `POST` | `email` | str | Yes | Valid user contact email address |
| `/v1/auth` | `POST` | `token` | str | Yes | Bearer authorization secret |SaaS Feature & Tier Comparison
TemplatesStructured matrix for software pricing tiers and plan inclusions.
| Feature / Tier | Free ($0) | Pro ($29/mo) | Enterprise |
| :------------- | :-------: | :----------: | :--------: |
| Active Seats | 1 User | Up to 10 | Unlimited |
| Monthly Exports | 100 | Unlimited | Unlimited |
| Cloud Sync | ❌ | ✅ | ✅ |
| SLA Support | Community | Email (24h) | 99.9% 1-Hour |Looking for the Complete Specification?
Read our in-depth Markdown Table Syntax Reference Guide covering table anatomy, CommonMark vs GFM specifications, escaping mechanics, and troubleshooting rules.