Notion is a connected workspace that combines docs, databases, wikis, and project management into a single tool, eliminating the need to switch between separate apps for notes, tasks, and knowledge. It sits at the intersection of a word processor, spreadsheet, and relational database β making it equally useful for solo productivity, team wikis, engineering sprints, and company knowledge hubs. The key mental model that unlocks Notion's power is understanding that every page is a database entry and every database entry is a full page: this symmetry means you can start with a simple list and layer in properties, relations, and views without ever restructuring your data.
What This Cheat Sheet Covers
This topic spans 14 focused tables and 183 indexed concepts. Below is a complete table-by-table outline of this topic, spanning foundational concepts through advanced details.
Table 1: Block Types
Every piece of content in Notion is a block. Understanding the full range of block types β and which slash command creates each β is the foundation for building efficient, visually clear pages.
| Type | Example | Description |
|---|---|---|
This is a paragraph block. | The default block type; any typing on a blank line creates a text block automatically. | |
/h1 β large title; /h2 β medium; /h3 β small | Three levels of page heading; also triggered with # , ## , ### at line start. | |
- Item one- Item two | Unordered list; triggered with - or * at line start; supports nesting via Tab. | |
1. First step2. Second step | Ordered list; triggered with 1. at line start; auto-increments. | |
[] Buy groceries | Checkbox block for task tracking; toggle with click or Ctrl/Cmd+Enter. | |
> Expandable section | Collapsible block that hides nested content; ideal for FAQs or progressive disclosure. | |
π‘ This is important | Highlighted block with an emoji icon; draws attention to notes, warnings, or tips. | |
" A great idea starts here" | Indented block with a left border; use for blockquotes or featured text. | |
--- | Horizontal rule that visually separates sections; triggered with --- at line start. | |
```python β syntax-highlighted code block | Displays code with syntax highlighting for 20+ languages; supports copy button. | |
/math β \int_0^1 x^2 dx | Renders LaTeX math equations using KaTeX; inline math also supported. |