# 一级标题
## 二级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题 最小只有六级标题
一级标题
二级标题
三级标题
四级标题
五级标题
六级标题 最小只有六级标题
**我被加粗了**
*我倾斜了*
==我高亮了==
我被加粗了
我倾斜了
我高亮了
上标
2^2^
22
下标
H~2~O
H2O
代码引用
> hello markdown
hello markdown
>>hello markdown
hello markdown
代码引用(```式)
\`\`\`
print('hello nick')
\`\`\`
```
print('hello nick')
```
代码引入(`式)
\`print(‘hello,nick’) \`
`print(‘hello,nick’) `
插入链接(链接描述显示)
[aden668博客](https://home.cnblogs.com/u/aden668/)
插入图片
![](https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1564028635734&di=8b536efe03d5e63124fd1cf33db62ef3&imgtype=0&src=http%3A%2F%2Fpic31.nipic.com%2F20130801%2F11604791_100539834000_2.jpg)
插入图片路径
![](C:Users快乐的单身狗PicturesSaved PicturesQQ图片20171109104940.jpg)
![](C:Users快乐的单身狗PicturesSaved PicturesQQ图片20171109104940.jpg)
有序列表
1. one
2. two
3. three
- one
- two
- three
无序列表
* one
* two
* three
- one
- two
- three
---
分割线
name|age|sex|class
:-:|:-|-:|:-
tony|20|男|21班
lucy|18|女|11班
name | age | sex | class |
---|---|---|---|
tony | 20 | 男 | 21班 |
lucy | 18 | 女 | 11班 |
数学公式(行内嵌)
$sum_{i=1}^{10}f(i)\,\, ext{thanks}$
$sum_{i=1}^{10}f(i),, ext{thanks}$
数学公式(块状)
$$
sum_{i=1}^{10}f(i)\,\,\, ext{thanks}
$$
$$
sum_{i=1}^{10}f(i),,, ext{thanks}
$$