所有工具
免费

可搜索、可打印的 Markdown 参考——标题、列表、链接、图片、代码块、表格和 GitHub 风格扩展。免费。

Basic syntax

12
# Heading 1
Top-level heading
## Heading 2
Second-level heading
### Heading 3
Third-level heading (up to ######)
**bold text**
Bold
*italic text*
Italic
***bold italic***
Bold and italic combined
`inline code`
Inline code span
Heading 1 =========
Setext H1 (underline style)
Heading 2 ---------
Setext H2 (underline style)
Line one Line two
Line break: two trailing spaces
Line one\ Line two
Line break: trailing backslash
Paragraph one. Paragraph two.
Blank line starts a new paragraph

Lists

10
- item - item
Unordered list (also * or +)
1. first 2. second
Ordered list
1. first 1. second
Auto-numbering (all 1. works)
- parent - nested child
Nested list: indent 2–4 spaces
1. step continued paragraph
Multi-line item: align with text
- item - item
Loose list (items become <p>)
1) first 2) second
Alternate ordered marker
3. starts at three
Start number sets list origin
- item code in list
Code block inside a list item
4\. Not a list.
Escape the dot to avoid a list

Links & images

10
[text](https://example.com)
Inline link
[text](https://example.com "Title")
Link with hover title
<https://example.com>
Autolink (bare URL)
<mail@example.com>
Email autolink
![alt text](image.png)
Image
![alt](image.png "Title")
Image with title
[![alt](thumb.png)](https://example.com)
Clickable image (image in link)
[relative link](../docs/page.md)
Relative path link
[section link](#heading-anchor)
Link to a heading anchor
[text](https://example.com/my%20page)
Encode spaces as %20 in URLs

Code & code blocks

11
`code`
Inline code
``use `backticks` inside``
Inline code containing backticks
``` plain block ```
Fenced code block
```js console.log('hi'); ```
JavaScript syntax highlighting
```php echo 'hi'; ```
PHP syntax highlighting
```python print('hi') ```
Python syntax highlighting
```bash ls -la ```
Shell syntax highlighting
```json {"key": "value"} ```
JSON syntax highlighting
```diff - removed + added ```
Diff highlighting (+/- lines)
```` ``` nested fence ``` ````
Show a fence: use more backticks
indented 4 spaces
Indented code block (classic)

Tables

10
| A | B | |---|---| | 1 | 2 |
Basic table
|:---|
Left-align a column
|:---:|
Center a column
|---:|
Right-align a column
A | B --- | --- 1 | 2
Outer pipes are optional
| `code` | **bold** |
Inline formatting in cells
| a \| b |
Literal pipe in a cell: escape it
| [link](url) | ![img](src) |
Links and images in cells
| Long header | x | |---|---|
Divider widths need not match
| line<br>break |
Multi-line cell via <br>

Blockquotes & rules

9
> quoted text
Blockquote
> level one >> level two
Nested blockquote
> para one > > para two
Multi-paragraph quote
> ### Heading > - list item
Other elements inside a quote
---
Horizontal rule
***
Horizontal rule (asterisks)
___
Horizontal rule (underscores)
text --- text
Blank lines around rules (not H2!)
> — Author Name
Attribution line inside a quote

GitHub-flavored extras

12
- [ ] todo item - [x] done item
Task list (checkboxes)
~~strikethrough~~
Strikethrough
Text[^1] [^1]: Footnote body.
Footnote
> [!NOTE]
Alert: note callout
> [!TIP]
Alert: tip callout
> [!IMPORTANT]
Alert: important callout
> [!WARNING]
Alert: warning callout
> [!CAUTION]
Alert: caution callout
@username
Mention a user (GitHub)
#123
Link an issue / PR (GitHub)
:tada: :rocket: :bug:
Emoji shortcodes
https://example.com
Bare URLs autolink in GFM

Escaping & HTML

11
\*not italic\*
Escape formatting characters
\\
Literal backslash
\# not a heading
Escape a leading #
\[not a link\]
Escape brackets
\`not code\`
Escape backticks
<kbd>Ctrl</kbd> + <kbd>C</kbd>
Keyboard keys via HTML
<br>
Explicit line break
<sub>sub</sub> <sup>sup</sup>
Subscript / superscript
<details> <summary>Title</summary> Body </details>
Collapsible section
<!-- hidden comment -->
Comment (not rendered)
&amp; &lt; &gt; &nbsp;
HTML entities work in Markdown

Advanced

10
## My Section → #my-section
Auto anchor: lowercase, dashes
[text][ref]
Reference-style link usage
[ref]: https://example.com "Title"
Reference link definition
[text][]
Shortcut: text doubles as label
![alt][logo]
Reference-style image
Term : Definition text
Definition list (some parsers)
<a id="custom-anchor"></a>
Custom anchor target
[Back to top](#top)
Jump link within the page
--- title: Page ---
YAML front matter (static sites)
Heading {#custom-id}
Custom heading id (some parsers)

Mermaid & math fences

10
```mermaid graph TD; A-->B; ```
Mermaid flowchart fence
```mermaid sequenceDiagram A->>B: Hi ```
Mermaid sequence diagram
```mermaid pie "A": 60 "B": 40 ```
Mermaid pie chart
```mermaid gantt task :a1, 2026-01-01, 7d ```
Mermaid Gantt chart
```mermaid erDiagram USER ||--o{ ORDER : places ```
Mermaid entity relationship
$E = mc^2$
Inline math (LaTeX)
$$ \frac{a}{b} $$
Block math (display mode)
```math \sqrt{x^2 + y^2} ```
Math fence (GitHub)
$\alpha \beta \gamma$
Greek letters in math
$x_{i}^{2}$
Subscript / superscript in math

没有条目匹配“:q”。


关于 Markdown 速查表

这份 Markdown 速查表将全部语法汇集在一个可搜索的页面上:基本语法、列表、链接和图片、代码和代码块、表格、引用块和分割线、GitHub 风格扩展、转义和内联 HTML、高级用法,以及 Mermaid 和数学公式块。

它回答了人们每次都要搜索的问题——如何对齐表格列、如何在编号列表项下嵌套列表、如何编写任务列表、脚注或可折叠区块,以及哪些字符需要转义——每一行都有可用的示例。

与本系列的其他速查表一样,它免费且在客户端运行:使用搜索框实时过滤行,通过固定目录在章节间跳转,点击即可复制任何代码片段,还可以打印页面作为写作时的参考。

如何使用 Markdown 速查表

  1. 打开速查表,浏览各章节,从“基本语法”和“列表”到“Mermaid 和数学公式块”。
  2. 搜索关键词如 table、task list 或 footnote 以实时过滤每一行。
  3. 跳转到“GitHub 风格扩展”查看仅在 GitHub 和类似平台上有效的语法。
  4. 点击代码片段或其复制图标,将 Markdown 复制到剪贴板。
  5. 使用打印功能获取完整 Markdown 参考的纸质版。

常见问题

十个章节:基本语法、列表、链接和图片、代码和代码块、表格、引用块和分割线、GitHub 风格扩展、转义和 HTML、高级用法,以及 Mermaid 和数学公式块。

是的。任务列表、表格、删除线、自动链接、脚注、可折叠 details 块、提示框和 emoji 短代码都有专门的章节。

表格章节展示了竖线和短横线的语法以及冒号放置方式来左对齐、右对齐或居中每列——复制示例然后编辑即可。

可以。点击任意行的 Markdown 或其复制图标,即可立即复制到剪贴板。

是的,完全免费,在浏览器中运行,无需登录。


热门搜索
markdown 速查表 markdown 语法 markdown 表格语法 github markdown 速查表 markdown 代码块 markdown 链接和图片语法 markdown 参考手册
需要帮助?
使用此工具时遇到问题?请告诉我们的团队。
报告问题

将此免费工具添加到你自己的网站 — 复制并粘贴下面的代码。