总览

Markdown 速查表提供了所有 Markdown 语法元素的基本解释。如果你想了解某些语法元素的更多信息,请参阅更详细的基本语法扩展语法

基本语法

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

元素 Markdown 语法 渲染效果
链接(Link) [title](https://www.example.com) title
图片(Image) ![alt text](image.jpg) alt text
粗体(Bold) **bold text** bold text
斜体(Italic) *italicized text* italicized text
标题(Heading) # H1
## H2
### H3

# H1


## H2


### H3

有序列表(Ordered List) 1. First item
2. Second item
3. Third item
  1. First item
  2. Second item
  3. Third item
无序列表(Unordered List) - First item
- Second item
- Third item
  • First item
  • Second item
  • Third item
代码(Code) `code` code
分隔线(Horizontal Rule) ---
引用块(Blockquote) > blockquote > blockquote

扩展语法

这些元素通过添加额外的功能扩展了基本语法。但是,并非所有 Markdown 应用程序都支持这些元素。

元素 Markdown 语法 渲染效果
代码块(Fenced Code Block)

```
{
“firstName”: “John”,
“lastName”: “Smith”,
“age”: 25
}
```

“firstName”: “John”,
“lastName”: “Smith”,
“age”: 25
表格(Table)

| 表头 | 表头 |
| — | — |
| 单元格 | 单元格 |

脚注(Footnote) Here’s a sentence with a footnote. [^1]
[^1]: This is the footnote.
删除线(Strikethrough) ~~The world is flat.~~ The world is flat.
任务列表(Task List)
    - [x] Write the press release
    - [ ] Update the website
    - [ ] Contact the media