Markdown语法记录
常规内容语法此处不再详细介绍,仅记录偶尔需要查阅语法的内容类型。
参考链接
硬换行
文档: CommonMark Spec - 6.7 Hard line breaks
连续的多行内容若不加特殊处理总是会渲染成没有换行的整个段落,手动换行可以通过插入空行、行尾空格(两个及以上)、反斜杠(\
)来实现。
删除线
文档: GitHub Flavored Markdown Spec - 6.5 Strikethrough (extension)
该功能由strikethrough
扩展支持,但一般默认启用。
一对~~
包裹的连续内容会用删除线格式化。
~~删除线~~
-> 删除线
任务列表
文档: GitHub Flavored Markdown Spec - 5.3 Task list items (extension)
该功能由tasklist
扩展支持,但一般默认启用。
diff code block
该语法是用于展示代码增删情况,开启该功能一般不需要特殊配置。
代码块语言类型需声明为diff
,在删除的行前加-
,在新增的行前加+
。
1
2
3
4
5
6
7
|
```diff
[dependencies.bevy]
git = "https://github.com/bevyengine/bevy"
rev = "11f52b8c72fc3a568e8bb4a4cd1f3eb025ac2e13"
- features = ["dynamic"]
+ features = ["jpeg", "dynamic"]
```
|
1
2
3
4
5
|
[dependencies.bevy]
git = "https://github.com/bevyengine/bevy"
rev = "11f52b8c72fc3a568e8bb4a4cd1f3eb025ac2e13"
- features = ["dynamic"]
+ features = ["jpeg", "dynamic"]
|
GitHub Alerts
文档: Basic writing and formatting syntax - Alerts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
> [!NOTE]
> Useful information that users should know, even when skimming content.
> [!TIP]
> Helpful advice for doing things better or more easily.
> [!IMPORTANT]
> Key information users need to know to achieve their goal.
> [!WARNING]
> Urgent info that needs immediate user attention to avoid problems.
> [!CAUTION]
> Advises about risks or negative outcomes of certain actions.
|
GitLab Alerts
文档: GitLab Flavored Markdown (GLFM) - Alerts
GitLab >= 17.10
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
> [!note]
> The following information is useful.
> [!tip]
> Tip of the day.
> [!important]
> This is something important you should know.
> [!warning]
> The following would be dangerous.
> [!caution]
> You need to be very careful about the following.
|
此外还支持设定标题。
1
2
|
> [!warning] Data deletion
> The following instructions will make your data unrecoverable.
|
也支持GitLab段落语法
1
2
3
4
5
6
|
>>> [!note] Things to consider
You should consider the following ramifications:
1. consideration 1
1. consideration 2
>>>
|
图表
Mermaid提供支持,文档: Diagram Syntax
语法随版本升级变动频繁,需要确认平台集成的版本情况。
1
2
3
|
```mermaid
info
```
|