Quick reference for the CommonMark and GitHub Flavored Markdown syntax.
# H1 ## H2 ### H3 #### H4 ##### H5 ###### H6
*italic* or _italic_ **bold** or __bold__ ***bold italic*** ~~strikethrough~~ `inline code`
- Unordered item - Another item - Nested item 1. Ordered item 2. Second item - [x] Task done - [ ] Task to do
[link text](https://example.com "optional title")  [reference][id] [id]: https://example.com
```javascript
const x = 1;
```
Indented code (4 spaces) also works.
> A quoted paragraph. >> Nested quote. --- (horizontal rule)
| Column A | Column B | | -------- | -------: | | Left | Right | | Cell | Cell |
https://example.comHere is a note.[^1] then [^1]: Note text.@username on supported platforms.