Notion is an all-in-one workspace platform combining note-taking, databases, wikis, project management, and collaboration tools into a single unified interface. Founded in 2013, Notion uses a block-based architecture where every piece of content—text, images, databases, embeds—exists as a draggable, nestable block that can be arranged, linked, and transformed on the fly. At its core, Notion treats pages as databases and databases as collections of pages, creating a bidirectional knowledge graph. The key mental model: everything is a page, every page can be a database, and every database entry is itself a full page—enabling workflows that traditional tools can't match. As of 2026, Notion has evolved into a programmable agent platform with Custom Agents, Dashboard views, Chart views, Presentation mode, and AI-powered automation running directly inside your workspace.
What This Cheat Sheet Covers
This topic spans 20 focused tables and 287 indexed concepts, 138 flashcards. Below is a complete table-by-table outline of this topic, spanning foundational concepts through advanced details.
A jump-to index of every table row in this cheat sheet.
An interactive map of every table and concept in this topic.
Table 1: Core Block Types
Everything you type in Notion is a block, and these are the bread-and-butter ones you'll reach for constantly—headings, lists, callouts, toggles, code, and the page block that nests one page inside another. Most can be summoned with a / slash command or a Markdown shortcut, and any block can be dragged, nested, or converted into another type on the fly.
| Block | Example | Description | |
|---|---|---|---|
Type normally or /text | • Standard plain text block • supports bold, italic, inline code, and | ||
/h1, /h2, /h3 | • Hierarchical section headers • H1 for major sections, H2 for subsections, H3 for details • toggle heading option collapses content beneath. | ||
/todo then [ ] → [x][ ] Buy groceries | • Interactive checkbox items • Cmd/Ctrl + Enter completes tasks• supports nested sub-tasks via indentation. | ||
- or * at line start- First point - Nested point | • Standard unordered list • Tab indents for nesting, Shift+Tab outdents • Markdown-compatible. | ||
1. at line start1. First step2. Second step | • Auto-incrementing ordered list • re-orders automatically when items move • supports multi-level numbering via Tab. | ||
/toggle▸ Click to expand Hidden content | • Collapsible container block • reveals nested content on click • Cmd/Ctrl+Opt+T expands/collapses all toggles on page. | ||
/callout💡 Pro tip: Use synced blocks to reuse content | • Highlighted box with custom icon and background color • perfect for warnings, tips, notes, or important information. | ||
> at line start"Design is intelligence made visible" | • Blockquote with left border styling • ideal for citations, testimonials, or highlighting key statements. | ||
```python def hello(): return "Hi" | Multi-line code with syntax highlighting for 50+ languages; supports copy button and line wrapping options. | ||
/tabs → Tab 1 | Tab 2 | Tab 3 | • Organizes content into horizontal clickable sections within a page • avoids long vertical scroll and replaces maze of subpages • new in Notion 3.4. | ||
$$ or /equationE = mc^2 | Display math using LaTeX notation; renders via KaTeX; for formulas, equations, or mathematical expressions. | ||
--- or /divider | • Horizontal rule separating content sections • also used as slide separators in Presentation mode. | ||
/page or Cmd/Ctrl + N | • Sub-page block nested within current page • appears as clickable link • inherits parent's permissions by default. | ||
/synced → create original, paste copies | • Reusable content block • edit original and all synced copies update instantly • ideal for disclaimers, headers, repeated sections. | ||
Drag block left/right → creates column | Multi-column layout; drag blocks horizontally to create columns; supports up to 5 columns side-by-side. | ||
/h4 | Smallest heading level (smaller than H3, bigger than body text); new in Notion 3.4 for fine-grained document structure. |