Notion Markdown Cheat Sheet
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 headingWe have many things to do:- [x] Write some markdown- [ ] Feed the llamas- [ ] Sweep the chimneysAnd we should do them in this order:1. Sweep2. 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
And we should do them in this order:
- Sweep
- Feed