Markdown Syntax Cheat Sheet
Format your documents and READMEs with ease.
Basic Formatting
Heading 1
# Heading 1Heading 2
## Heading 2Bold
**Bold**Italic
*Italic*Blockquote
> BlockquoteHorizontal Rule
---Lists
Unordered List
- Item 1
- Item 2Ordered List
1. Item 1
2. Item 2Task List
- [x] Done
- [ ] TodoLinks & Images
Link
[Title](url)Image
Email
<email@example.com>Code
Inline Code
`code`Code Block
```
code block
```Syntax Highlighting
```js
const x = 1;
```