Markdown备忘表

Markdown语法快速参考。

总览

该Markdown备忘单提供了所有Markdown语法元素的快速概述。它无法涵盖所有​​的极端情况,因此,如果您需要有关这些元素中任何一个的更多信息,请参阅我们的参考指南以获取基本语法扩展语法

基本语法

这些是John Gruber原始设计文档中概述的元素。所有Markdown应用程序都支持这些元素。 .

元素 Markdown 语法
标题 # H1
## H2
### H3
粗体 **bold text**
斜体 *italicized text*
块引用 > blockquote
有序列表 1. First item
2. Second item
3. Third item
无序列表 - First item
- Second item
- Third item
代码 `code`
水平线 ---
超链接 [title](https://www.example.com)
图片 ![alt text](image.jpg)

扩展语法

这些元素通过添加其他功能来扩展基本语法。并非所有Markdown应用程序都支持这些元素。 .

元素 Markdown 语法
表格 | Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |
围栏代码块 ```
{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}
```
脚注 Here's a sentence with a footnote. [^1]

[^1]: This is the footnote.
标题ID ### My Great Heading {#custom-id}
自定义列表 term
: definition
删除线 ~~The world is flat.~~
任务列表 - [x] Write the press release
- [ ] Update the website
- [ ] Contact the media