Skip to content

Markdown Cheatsheet

A printable quick reference for the most common Markdown syntax.

SyntaxResult
**bold**bold
*italic*italic
~~strikethrough~~strikethrough
`inline code`inline code
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
- Bullet item
- Another item
- Nested item
1. Numbered item
2. Another item
- [x] Checked task
- [ ] Unchecked task
[Link text](https://example.com)
![Image alt text](image.png)
> This is a quote.
> It can span multiple lines.
```language
code here
```
| Header 1 | Header 2 |
|----------|----------|
| Cell 1 | Cell 2 |
| Cell 3 | Cell 4 |
---
<!-- @var name: value -->
Text with {{name}} placeholder.

See Variables for full documentation.

Inline: $E = mc^2$
Display:
$$
\sum_{i=1}^{n} x_i
$$

Enable in Settings > Advanced > Rendering Extensions.

```mermaid
graph LR
A --> B --> C
```

Enable in Settings > Advanced > Rendering Extensions.

Wrap content in :::effectName and ::: to apply a visual effect in the preview.

:::shake
This text shakes!
:::
:::rainbow
Rainbow-colored text.
:::

Available effects: shake, rainbow, glow, bounce, blink