Markdown Cheatsheet — Quick Reference Guide
Quick reference guide for Markdown formatting syntax.
Headers
# H1 ## H2 ### H3
H1
H2
H3
Emphasis
**bold** *italic* ~~strikethrough~~
bold
italic
strikethrough
Lists
1. First item 2. Second item - Unordered item - Another item
- First item
- Second item
- Unordered item
- Another item
Links
[OpenAI](https://openai.com)
Images

Blockquotes
> This is a blockquote.
This is a blockquote.
Code
Inline `code`
```javascript
console.log("Block code");
```Inline code
console.log("Block code");
Tables
| Syntax | Description | | ----------- | ----------- | | Header | Title | | Paragraph | Text |
| Syntax | Description |
|---|---|
| Header | Title |
| Paragraph | Text |
Task Lists
- [x] Write the press release - [ ] Update the website - [ ] Contact the media
- Write the press release
- Update the website
- Contact the media