Markdown in 5min
# H1 Header
## H2 Header
### H3 Header
#### H4 Header
##### H5 Header
###### H6 Header
Text formatting
**粗体文本**
*斜体文本*
***粗体和斜体***
~~删除线~~
`内联代码`
Links and images
[Link text](https://example.com)
[Link with title](https://example.com "Hover title")


Lists
无序列表:
- Item 1
- Item 2
- Nested item
有序列表:
1. First item
2. Second item
3. Third item
引用
Code blocks
```javascript
function hello() {
console.log("Hello, world!");
}
```
Tables
| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Row 1 | Data | Data |
| Row 2 | Data | Data |
水平线
任务列表
- [x] Completed task
- [ ] Incomplete task
- [ ] Another task
转义字符
換行符
用两个空格结束一行以创建
换行。
或者使用空行来开始新的一段。