Markdown 语法

记录一些怎么也记不住写法的 Markdown 语法。

一、基础语法

1. 标题

1
2
3
# 标题 1
## 标题 2
### 标题 3

2. 强调

1
2
3
4
5
**加粗**
_斜体_
_**粗斜体**_
<u>下划线</u>
~~删除~~

实例:这里是加粗的文字这里是斜体文字_,粗斜体_,这里是下划线这里是删除文字

3. 特殊

1
2
文字<sub>下标</sub>
文字<sup>上标</sup>

实例:水分子 H2O,相对论等式 E = mc2

4. 引用

1
2
>这里是引用文字
--哈哈哈

实例:

本来是没有路的,走得人多了,就成了路
——鲁迅

5. 列表

1
2
3
4
5
6
7
8
9
* 无序1
* 无序2

1. 有序1
2. 有序2

- [ ] 未完成任务
- [ ] 未完成任务
- [X] 已完成任务

实例:

  • 无序1
  • 无序2
  • 无序3
  1. 有序1
  2. 有序2
  3. 有序3
  • 未完成任务
  • 未完成任务
  • 已完成任务

6. 链接

1
[链接文字](https://blog.charlestang.org)

实例:

Becomin’ Charles

7. 代码

1
2
3
```<language>
```
行内代码,`code`

8. 图片

1
![](../../images/2024/03/dashboard-cn.png)

实例:

二、复杂语法

1. 表格

基础

1
2
3
4
| Syntax      | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |

实例:

SyntaxDescription
HeaderTitle
ParagraphText

对齐

1
2
3
4
| Syntax      | Description | Test Text     |
| :--- | :----: | ---: |
| Header | Title | Here's this |
| Paragraph | Text | And more |

实例:

SyntaxDescriptionTest Text
HeaderTitleHere’s this
ParagraphTextAnd more

三、皮肤特有

1. 引用

1
2
{% centerquote %}本来是没有路的,走得人多了就成了路{% endcenterquote %}
{% cq %}Elegant in code, simple in core{% endcq %}

实例:

本来是没有路的,走得人多了就成了路

Elegant in code, simple in core

2. Note

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{% note %}
#### Header
(without define class style)
{% endnote %}

{% note default %}
#### Default Header
Welcome to [Hexo!](https://hexo.io)
{% endnote %}

{% note primary %}
#### Primary Header
**Welcome** to [Hexo!](https://hexo.io)
{% endnote %}

{% note info %}
#### Info Header
**Welcome** to [Hexo!](https://hexo.io)
{% endnote %}

{% note success %}
#### Success Header
**Welcome** to [Hexo!](https://hexo.io)
{% endnote %}

{% note warning %}
#### Warning Header
**Welcome** to [Hexo!](https://hexo.io)
{% endnote %}

{% note danger %}
#### Danger Header
**Welcome** to [Hexo!](https://hexo.io)
{% endnote %}

{% note info no-icon %}
#### No icon note
Note **without** icon: `note info no-icon`
{% endnote %}

{% note primary This is a summary %}
#### Details and summary
Note with summary: `note primary This is a summary`
{% endnote %}

{% note success %}
#### Codeblock in note

```
code block in note tag
code block in note tag
code block in note tag
```
{% endnote %}

(without define class style)

Default Header

Welcome to Hexo!

Primary Header

Welcome to Hexo!

Info Header

Welcome to Hexo!

Success Header

Welcome to Hexo!

Warning Header

Welcome to Hexo!

Danger Header

Welcome to Hexo!

No icon note

Note without icon: note info no-icon

This is a summary

Details and summary

Note with summary: note primary This is a summary

Codeblock in note

1
2
3
code block in note tag
code block in note tag
code block in note tag

3. Label 标签

1
2
3
4
5
6
7
8
语法格式:

{% label [class]@text %}

范例:
Lorem {% label @ipsum %} {% label primary@dolor sit %} amet, consectetur {% label success@adipiscing elit, %} sed {% label info@do eiusmod %} tempor incididunt ut labore et dolore magna aliqua.

Ut enim *{% label warning @ad %}* minim veniam, quis **{% label danger@nostrud %}** exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

实例:

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.