Printable Quick Reference & Snippets

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.

Showing 9 of 9 reference snippets

Standard GFM Table

Core

The standard GitHub Flavored Markdown table structure with header, delimiter, and rows.

Raw Markdown Syntax
| 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

Core

Space-saving compact markdown with minimal whitespace padding.

Raw Markdown Syntax
|Name|Role|Dept|
|---|---|---|
|Alice|Lead|Eng|
|Bob|Design|UI|

Left, Center, & Right Alignments

Alignment

Colons in the delimiter line dictate column alignments (:---, :---:, ---:).

Raw Markdown Syntax
| 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

Formatting

Use a backslash (\|) to display a literal pipe character inside a cell without breaking columns.

Raw Markdown Syntax
| Command | Syntax Example | Notes |
| :------ | :------------- | :---- |
| Logical OR | `a \|\| b` | Boolean operator |
| Pipe Filter | `grep \| awk` | Shell pipeline |

Multiline Cells via HTML <br>

Formatting

Standard markdown does not allow raw newlines in cells. Use <br> or <br/> for line breaks.

Raw Markdown Syntax
| 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

Formatting

Markdown bold, italics, strikethrough, inline code, and links are fully supported inside cells.

Raw Markdown Syntax
| 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

Templates

Task item checkboxes (- [ ] and - [x]) render interactive checkboxes in GitHub & GitLab.

Raw Markdown Syntax
| 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

Templates

Industry blueprint for documenting REST API parameters and HTTP methods.

Raw Markdown Syntax
| 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

Templates

Structured matrix for software pricing tiers and plan inclusions.

Raw Markdown Syntax
| 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.

Read Syntax Guide