334 字
2 分钟
Markdown 语法整理
Markdown 语法速查表
基本语法
这些是 John Gruber 的原始设计文档中列出的元素。所有 Markdown 应用程序都支持这些元素。
标题
H1
H2
H3
# H1## H2### H3粗体
bold text
**bold text**斜体
italicized text
*italicized text*引用块
blockquote
> blockquote有序列表
- First item
- Second item
- Third item
1. First item2. Second item3. Third item无序列表
- First item
- Second item
- Third item
- First item- Second item- Third item代码
code
`code`分割线
---链接
[Markdown Guide](https://www.markdownguide.org)图片

扩展语法 (目前仅支持部分)
这些元素通过添加额外的功能扩展了基本语法。但是,并非所有 Markdown 应用程序都支持这些元素。
表格
| Syntax | Description |
|---|---|
| Header | Title |
| Paragraph | Text |
| Syntax | Description || ----------- | ----------- || Header | Title || Paragraph | Text |代码块
{ \"firstName\": \"John\", \"lastName\": \"Smith\", \"age\": 25}```{ \"firstName\": \"John\", \"lastName\": \"Smith\", \"age\": 25}```脚注
Here’s a sentence with a footnote. 1
Here\'s a sentence with a footnote. [^1]
[^1]: This is the footnote.标题编号
My Great Heading {#custom-id}
### My Great Heading {#custom-id}定义列表
term : definition
term: definition删除线
The world is flat.
~~The world is flat.~~任务列表
- Write the press release
- Update the website
- Contact the media
- [x] Write the press release- [ ] Update the website- [ ] Contact the media表情
That is so funny! :joy:
(See also Copying and Pasting Emoji)
That is so funny! :joy:
(See also [Copying and Pasting Emoji](https://www.markdownguide.org/extended-syntax/#copying-and-pasting-emoji))高亮
I need to highlight these ==very important words==.
I need to highlight these ==very important words==.下标
H2O
H~2~O上标
X^2^
X^2^Footnotes
-
This is the footnote. ↩
评论