Markdown Cheatsheet

CommonMark + common GFM extensions (GitHub-flavored Markdown).

1 credit

Inline

6 items
Bold
**bold**
Italic
*italic*
Strikethrough
~~done~~
Inline code
`code`
Link
[text](https://url)
Image
![alt](image.png)

Blocks

8 items
Heading
# H1 ## H2 ### H3
Unordered list
- item
Ordered list
1. item
Blockquote
> quoted
Horizontal rule
---
Fenced code
```js\ncode\n```
Table
| a | b |\n|---|---|\n| 1 | 2 |
Task list (GFM)
- [x] done - [ ] todo

Further reading