Use #
for headers:
# H1 Header
## H2 Header
### H3 Header
*Italic text*
**Bold text**
***Bold and italic***
- Unordered item
- Nested item
- Another item
1. Ordered item
2. Second item
1. Nested ordered item
[Link text](https://example.com)
![Alt text](image_url)
Inline code and code blocks:
`Inline code`
```language
// Code block
console.log('Hello, world!');
```
Create blockquotes:
> This is a blockquote.
Add a horizontal rule:
---
Create tables:
| Column 1 | Column 2 |
| -------- | -------- |
| Row 1 | Data |
| Row 2 | Data |