- Markdown
 
# 📦 区块
- 无序列表1
  - 无序列表1.1
    - 无序列表1.1.1
    - 无序列表1.1.2
  - 无序列表1.2
- 无序列表2
- 无序列表3
1. 有序列表1
2. 有序列表2
3. 有序列表3
> 引用模块 
> 道德是用来律己的,不是用来责人的;道德是用来躬行实践的,不是在嘴里头空喊的,道德的要义是修身,修身的最高境界是追求真理。
 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- 无序列表1
- 无序列表1.1
- 无序列表1.1.1
 - 无序列表1.1.2
 
 - 无序列表1.2
 
 - 无序列表1.1
 - 无序列表2
 - 无序列表3
 
- 有序列表1
 - 有序列表2
 - 有序列表3
 
引用模块 道德是用来律己的,不是用来责人的;道德是用来躬行实践的,不是在嘴里头空喊的,道德的要义是修身,修身的最高境界是追求真理。
# 📎 行内标记
**强调/粗体**  
~~删除线~~
_斜体字_
<u>下划线</u>
`行内代码块/高亮`
<kbd>Ctrl</kbd> + <kbd>C</kbd>
 1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
强调/粗体
删除线
斜体字
下划线
行内代码块/高亮
Ctrl + C
# 🔗 图片和链接
[让子弹飞电影](https://www.bilibili.com/bangumi/play/ep328482)

<audio id="audio" controls="mini" duration="true" preload="none">
<source id="mp3" src="xxx">
</audio>
<iframe src="xxx" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true"> </iframe>
 1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
链接: [电影]让子弹飞 (opens new window)
图片:
 音频:
视频:
# ✏️ 公式
$\color{Red}{China}$, $\color{Blue}{English}$
$x_{1,2} = \frac { -b \pm \sqrt{ b^2 - 4ac } }{ 2a }$
$a^m \cdot a^n = a^{m+n}$
$$ 
  \left | \begin{array}{c}
  1     & 1     & 1     & ... & 1 \\
  a_1   & a_2   & a_3   & ... & a_n \\
  a^2_1 & a^2_2 & a^2_3 & ... & a^2_n \\
  \\
  \vdots & \vdots & \vdots & \ddots & \vdots \\
  \\
  a^{n-1}_1 & a^{n-1}_2 & a^{n-1}_3 & ... & a^{n-1}_n
  \end{array} \right |
  = \prod_{1 \le i < j \leq n }
$$
$$
  \begin{bmatrix}
  1&1 \\
  2&2
  \end{bmatrix}
$$
 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
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
,