1.1标题
代码:
效果:
一级标题
二级标题
三级标题
四级标题
五级标题
六级标题
1.2加粗
代码:
**加粗**
效果:
加粗
1.3斜体
代码:
*斜体*
效果:
斜体
1.4高亮
==我被高亮==
效果:
高亮
1.5上标
代码:
1^1^
效果:
11
1.6下标
C~2~H~5~oH
效果:
C2H5OH
1.7代码引用
代码:
>hello you
效果:
hello you
代码:
>hello you >>hello you
效果:
hello you
hello you
1.8代码引用
代码:
```c print('hell nick')
效果:
print('hell nick')
1.9代码引入
代码:
print('hello nick')
效果:
print('hello nick')
1.10插入链接(链接显示)
代码:
<https://www.baidu.com>
效果:
1.12插入链接(链接描述显示)
代码:
[百度](https://www.baidu.com)
效果 :
1.12插入图片
代码:
![](E:\123.jpg)
效果:
1.13插入图片(图片路径)
绝对路径:.md文本同目录下图片的名字如
123.jpg
相对路径:图片在电脑中的路径地址,如
![](E:\123.jpg)
代码:
![](123.jpg) ![](E:\123.jpg)
1.14有序列表
代码:
1.one 2.two 3.three
效果:
-
one
-
two
-
three
1.15无序列表
* one * two * three
效果:
-
one
-
two
-
three
1.16分割线
---
效果:
1.17表格而且第二行必须得有,并且第二行的冒号代表对齐格式,分别为居中:右对齐:左对齐:
name | age | sex :-:|:-|-: tony|20|男 lucy|18|女
效果:
name | age | sex |
---|---|---|
tony | 20 | 男 |
lucy | 18 | 女 |
1.18数学公式(行内嵌)
代码:
内嵌数学公式$\sum_{i=1}^{10}f(i)\,\,\text{thanks}$
效果:
内嵌数学公式
1.19数学公式(块状)
代码:
$$ \sum_{i=1}^{10}f(i)\,\,\text{thanks} $$
效果: