基本操作篇

最小可以到六级标题

有序列表:

  1. 有序列表1

  2. 有序列表2

无序列表:

  • 无序列表1

  • 无序列表2

清单:

字体:斜体
粗体
粗斜体
printf
下划线[1]
H2O
x2
高亮文字

删除线

颜色

😀

表情代码大全在下面

进阶操作篇

一、插入超链接:

1. [Markdown语法](https://www.runoob.com/markdown/md-tutorial.html)
2. 或者直接输入URL:https://blog.csdn.net/qq_39087432/article/details/115407374 (表情包代码链接)
3. 跳转到[Markdown语法实例](#markdown语法实例)
4. 挂嵌入视频的方法:b站分享->嵌入代码->粘贴但记得加https
<iframe src="https://player.bilibili.com/player.html?aid=327623069&bvid=BV1JA411h7Gw&cid=171385214&p=1" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true"> </iframe>

二、插入图片

邓紫棋
[]里的是当图片无法加载时显示的文字,用于描述图片的内容;()可以是图片的网络 URL 地址,也可以是本地图片的相对或绝对路径。

三、插入区块

这是一级区块

这是二级区块

四、插入代码块

1
print ("这是一个代码块")

五、插入下划线


六、插入脚注

在vscode上写代码[2]

七、插入表格

a b c d
f g h i
e j k l

八、插入公式(语法同Latex)

$$
\lim_{x\to0}\frac{\sin x}{x}=1
$$
直接在这个网站上编辑公式把代码copy过来就行:https://latex.91maths.com/

以上页面源码如下:

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
56
57
58
59
60
61
62
63
64
65
# 基本操作篇

###### 最小可以到六级标题

有序列表:
1. 有序列表1
2. 有序列表2

无序列表:
* 无序列表1
- 无序列表2


清单:
- [ ] 吃饭
- [x] 睡觉

字体:
*斜体***粗体*****粗斜体***`printf`,<u>下划线[^下划线]</u>,H~2~O,x^2^,==高亮文字==,~~删除线~~,<p style="color: red;">颜色</p>
:grinning:
表情代码大全在下面
[^下划线]:冷知识:Markdown可以兼容HTML语言

# 进阶操作篇

## 一、插入超链接:
1. [Markdown语法](https://www.runoob.com/markdown/md-tutorial.html)
2. 或者直接输入URL:https://blog.csdn.net/qq_39087432/article/details/115407374 (表情包代码链接)
3. 跳转到[Markdown语法实例](#markdown语法实例)
4. 挂嵌入视频的方法:b站分享->嵌入代码->粘贴但记得加https
<iframe src="https://player.bilibili.com/player.html?aid=327623069&bvid=BV1JA411h7Gw&cid=171385214&p=1" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true"> </iframe>

## 二、插入图片
![邓紫棋](https://ts1.cn.mm.bing.net/th/id/R-C.3e69986279120aa870f90428c6599abf?rik=YcHOEXNoV475Gw&riu=http%3a%2f%2fpuui.qpic.cn%2fvpic_cover%2fr3368tr9gly%2fr3368tr9gly_hz.jpg%2f1280&ehk=ySTntmNP%2fD97ATygyPHbOquFBs6PegxYjpuOsfTNWhk%3d&risl=&pid=ImgRaw&r=0 "邓紫棋姐姐")
[]里的是当图片无法加载时显示的文字,用于描述图片的内容;()可以是图片的网络 URL 地址,也可以是本地图片的相对或绝对路径。
## 三、插入区块
>这是一级区块
>>这是二级区块

## 四、插入代码块
···python
print ("这是一个代码块")
···
注:这里总是会有bug我就用中文键盘上对应符号代替了

## 五、插入下划线
---

## 六、插入脚注
在vscode上写代码[^vscode]
[^vscode]:指的是Visual Studio Code

## 七、插入表格

|a|b|c|d|
|---|---|---|---|
|f|g|h|i|
|e|j|k|l|

## 八、插入公式(语法同Latex)
$$
\lim_{x\to0}\frac{\sin x}{x}=1
$$
直接在这个网站上编辑公式把代码copy过来就行:https://latex.91maths.com/


  1. 冷知识:Markdown可以兼容HTML语言 ↩︎

  2. 指的是Visual Studio Code ↩︎