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 语法
Table | Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |
Fenced Code Block ```
{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}
```
Footnote Here's a sentence with a footnote. [^1]

[^1]: This is the footnote.
Heading ID ### My Great Heading {#custom-id}
Definition List term
: definition
Strikethrough ~~The world is flat.~~
Task List - [x] Write the press release
- [ ] Update the website
- [ ] Contact the media
Emoji
(see also Copying and Pasting Emoji)
That is so funny! :joy:
Highlight I need to highlight these ==very important words==.
Subscript H~2~O
Superscript X^2^

下载

你可以下载到速查表的 Markdown 文档 ,以便在你的 Markdown 应用程序中使用。