📘 Markdown Cheat Sheet
Headings
# H1
## H2
### H3
#### H4
##### H5
###### H6
Emphasis
*italic* or _italic_
**bold** or __bold__
***bold italic***
~~strikethrough~~
Lists
Unordered List
- Item 1
- Item 2
- Subitem 2.1
* Item 3
Ordered List
1. First
2. Second
1. Subitem
Links
[Text](https://example.com)
[OpenAI](https://openai.com)
Images

Code
Inline Code
`inline code`
Code Block
```language function greet() { console.log(“Hello, world!”); } ```
Blockquotes
> This is a quote.
>> Nested quote.
Horizontal Rule
---
***
___
Tables
| Syntax | Description |
|--------|-------------|
| Header | Title |
| Cell | Text |
Task Lists
- [x] Task complete
- [ ] Task incomplete
Escaping Characters
Use a backslash \
to escape Markdown characters:
\*escaped asterisk\*