标题

#的数量代表了标题的级别,添加三个#表示创建一个三级标题。

注意事项

为了在不同程序之间的兼容性考虑,请用一个空格在#和标题之间分隔。

强调

加粗

在需要加粗部分的两侧各添加两个**或者两个__,文字与符号之间不需要空格。

1
2
This is my **blog.**
This is my __blog.__

如下所示:

This is my blog.
This is my blog.

倾斜

在需要倾斜部分的两侧各添加一个*号,文字与符号之间不需要空格。

1
This is my *blog.*

如下所示:

This is my blog.

删除线

在需要添加删除线部分的两侧各添加两个~~,文字与符号之间不需要空格。

1
~~This is my blog.~~

如下所示:

This is my blog.

引用

段落前添加>,可渲染多行文字。

1
> This is my blog.

如下所示:

This is my Blog.

引用嵌套

按顺序依次添加>

1
2
3
> This is my blog.
>> This is my blog.
>>> This is my blog.

如下所示:

This is my blog.

This is my blog.

This is my blog.

列表

无序列表

每个列表项前面添加破折号 ( - )、星号 ( * ) 或加号 ( + )

1
2
3
- This is my blog.
* This is my blog.
+ This is my blog.

如下所示:

  • This is my blog.
  • This is my blog.
  • This is my blog.

无序列表嵌套

按顺序依次缩进制表符破折号( - ),其他符号同理。

1
2
3
- This is my blog.
- This is my blog.
- This is my blog.

如下所示:

  • This is my blog.
    • This is my blog.
      • This is my blog.

代码高亮

将所要表示的代码使用反引号 ( `` )包含起来。

1
2
`This` is my blog.
`This is my blog.`

如下所示:
This is my blog.
This is my blog.

代码块

将反引号 ( ``` )补充在在代码块的上下两行,将其包含起来。
在上方反引号后可填写代码语言类型,以高亮代码显示规范。

分隔线

要创建分隔线,请在单独一行上使用三个或多个星号 ( *** )、破折号 ( --- ) 或下划线 ( ___ ),并且不能包含其他内容。

1
2
3
4
5
6
7
8
9
10
11
12
This is my blog.

***

This is my blog.

---

This is my blog.

___

如下所示:

This is my blog.


This is my blog.


This is my blog.


注意事项

为了兼容性,请在分隔线的前后均添加空白行。

超链接

格式

[链接名](链接地址 "链接描述")

<链接>

当鼠标悬停在链接上时,显示的内容为链接描述所填写的内容链接描述为选填)。

<>可直接将链接转换为可点击样式。

1
2
3
This is my [blog](https://blog.piglets.top).
This is my [blog](https://blog.piglets.top "这是我的博客").
<https://blog.piglets.top>

如下所示:

This is my blog.
This is my blog.
https://blog.piglets.top

图片

格式

![图片名](图片链接 "图片描述")

[![图片名](图片链接 "图片描述")](跳转链接)

当鼠标悬停在图片上时,显示的内容为图片描述所填写的内容,图片无法加载时将显示图片名所填写内容图片描述为选填)。

跳转链接为点击图片后所跳转的链接地址。

1
2
3
![彩虹猫](https://github.elemecdn.com/images-c@latest/img/nyancat.webp)
![彩虹猫](https://github.elemecdn.com/images-c@latest/img/nyancat.webp "这是一张动态图")
[![彩虹猫](https://github.elemecdn.com/images-c@latest/img/nyancat.webp "这是一张动态图")](https://blog.piglets.top)

如下所示:
彩虹猫
彩虹猫
彩虹猫

表格

要添加表格,请使用三个或多个连字符(---)创建每列的标题,并使用管道( | )分隔每列。您可以选择在表的任一端添加管道。

1
2
3
4
| 语法 | 说明 |
| --- | --- |
| 标题1 | 标题2 |
| 段落 | 文本 |

如下所示:

语法说明
标题1标题2
段落文本

对齐

你可以通过在标题行中的连字符的左侧,右侧或两侧添加冒号(:),将列中的文本对齐到左侧右侧中心

1
2
3
4
|   向左对齐  |  居中对齐 |  向右对齐 |
| :--- | :---: | ---: |
| blog | blog | blog |
| blog | blog | blog |

如下所示:

向左对齐居中对齐向右对齐
blogblogblog
blogblogblog

注意事项

表格中无法添加添加标题块引用列表水平规则图像HTML标签

这里推荐几个在线生成表格的网站,有更好的工具或者网站也可以留言告诉我:
https://markdown-convert.com/zh/tool/table

https://tool.lu/tables/

复选框

要创建复选框,请在文字前添加破折号( - )方括号[ ],并在方括号[ ]前面加上空格。要选择一个复选框,请在方括号[ ]之间添加 x

1
2
- [x] This is my blog.
- [ ] This is my blog.

如下所示:

This is my blog.

This is my blog.

注意事项

部分编辑器不支持此格式。

HTML元素

目前支持的 HTML 元素有:<kbd> <b> <i> <em> <sup> <sub> <u> <br>等 。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
键盘效果
This is my <kbd>blog.</kbd>
加粗
This is my <b>blog.</b>
倾斜
This is my <i>blog.</i>
好像还是倾斜
This is my <em>blog.</em>
上标文本
This is my <sup>blog.</sup>
下标文本
This is my <sub>blog.</sub>
下划线
This is my <u>blog.</u>
换行
This is my <br>blog.</br>

如下所示:

This is my blog.
This is my blog.
This is my blog.
This is my blog.
This is my blog.
This is my blog.
This is my blog.
This is my
blog.

转义

要显示原本用于格式化Markdow文档的字符,请在字符前面添加反斜杠字符( \ )。Markdown 支持以下这些符号前面加上反斜杠来帮助插入普通的符号:

1
2
3
4
5
6
7
8
9
10
11
12
13
\   反斜线
` 反引号
* 星号
_ 下划线
{} 花括号
[] 方括号
() 小括号
# 井字号
+ 加号
- 减号
. 英文句点
! 感叹号
| 管子

Emoji 表情

复制和粘贴表情符号

Emoji 表情大全:https://www.emojiall.com/zh-hans

复制表情符号并将其粘贴到文档中

表情符号简码

键入Emoji Shortcodes

1
2
3
4
:'-(
;-)
:sleeping:
:kissing_smiling_eyes:

如下所示:
:’-(
😉
😴
😙