标题

1
2
3
4
5
6
# H1
## H2
### H3
#### H4
##### H5
###### H6

段落

1
2
3
4
5
Here's a line for us to start with.

这是一个单独的段落...

This line is also a separate paragraph.

Here’s a line for us to start with.

这是一个单独的段落…

This line is also a separate paragraph.

强调

1
2
3
**粗体**
*斜体*
***粗体 + 斜体***

粗体
斜体
粗体 + 斜体

删除线

1
~~删除线~~

删除线

引用

1
> 马克思曾说...

马克思曾说…

列表

1
2
3
4
5
1. 有序列表
2. 有序列表
- 无序列表
- 无序列表
3. 有序列表
  1. 有序列表
  2. 有序列表
    • 无序列表
    • 无序列表
  3. 有序列表

代码

1
2
At the command prompt, type `nano`.
``Use `code` in your Markdown file.``

At the command prompt, type nano.
Use `code` in your Markdown file.

1
2
3
4
{
"name": "Bobo",
"age": 23
}

分隔线

1
2
3
***
---
___

链接

1
2
3
4
这是一个链接: [Markdown语法](https://markdown.com.cn/ "最好的markdown教程")
这是一个链接: [Markdown语法][1]

[1]: https://markdown.com.cn/ "最好的markdown教程"

这是一个链接: Markdown语法
这是一个链接: Markdown语法

图片

1
2
3
4
5
6
![图片alt](https://cdn.jsdelivr.net/gh/daidaibo/PicGo/coco/p2505426280.jpg "图片title")
![图片alt][avatar]

[![图片alt](https://cdn.jsdelivr.net/gh/daidaibo/PicGo/coco/p2505426280.jpg "图片title")](https://www.5207.fun/)

[avatar]: https://cdn.jsdelivr.net/gh/daidaibo/PicGo/coco/p2505426280.jpg "图片title"

图片alt

转义字符

1
\* Without the backslash, this would be a bullet in an unordered list.

* Without the backslash, this would be a bullet in an unordered list.

内嵌 HTML 标签

1
To reboot your computer, press <kbd>ctrl</kbd> + <kbd>alt</kbd> + <kbd>del</kbd>.

To reboot your computer, press ctrl + alt + del.

表格

1
2
3
4
5
|   | 周一 | 周二 | 周三 | 周四 | 周五 |
|:---:|:---:|:---:|:---:|:---:|:---:|
| 上午 | 🌞 | | | | |
| 下午 | | 🌧️ | | | |
| 晚上 | | | 🌛 | | |
周一 周二 周三 周四 周五
上午 🌞
下午 🌧️
晚上 🌛

任务列表

1
2
3
- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media
  • Write the press release
  • Update the website
  • Contact the media