Notion Markdown Cheat Sheet
Last updated November 6, 2023
Headings
MARKDOWN | NOTION ELEMENT |
# | Heading 1 |
## | Heading 2 |
### | Heading 3 |
Font Style
MARKDOWN | NOTION ELEMENT |
**text** | Bold |
_text_ | Italic |
~~text~~ | Strikethrough |
Content Formatting
MARKDOWN | NOTION ELEMENT |
- [x] Completed task - [ ] Incomplete task - [ ] Another todo | Task List |
1. First item 2. Second item 3. Third item | Ordered List |
- First item - Second item - Third item | Bullet List |
> quote | Blockquote |
`code` | Code |
[Link Text](url) | Link |
![Image Description](imageurl) | Image |
``` "key": "value", "key": "value" ``` | Code Block |
Example
For example, the following markdown will produce the result below.
# Here is a heading
We have many things to do:
- [x] Write some markdown
- [ ] Feed the llamas
- [ ] Sweep the chimneys
And we should do them in this order:
1. Sweep
2. Feed
![Happy Llama](url)
Example Result
Here is a heading
We have many things to do:
- Write some markdown
- Feed the llamas
- Sweep the chimneys
Was this article helpful?
💻