1.标题
# 一级标题
## 二级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题
一级标题
二级标题
三级标题
四级标题
五级标题
六级标题
2.字体
**粗体**
*斜体*
粗体
斜体
3.列表
3.1.无序列表
- 无序列表项目a
- 无序列表项目b
- 无序列表项目c
- 无序列表项目a
- 无序列表项目b
- 无序列表项目c
3.2.有序列表
1. 有序列表项目1
2. 无序列表项目2
3. 无序列表项目3
- 有序列表项目1
- 无序列表项目2
- 无序列表项目3
4.引用
4.1. 文字引用
> The Zen of Python
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than right now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!
4.2. 代码引用
单行:
` import this `
多行:
```
import a
import b.c
from d import e
```
单行效果:
import this
多行效果:
import a
import b.c
from d import e
5. 链接
[简书](https://www.jianshu.com/)
