[TOC]#####MarkDown用法
######目录
在文档第一行使用
>[TOC]
######标题
1. 一级标题
#
2. 二级标题
##
3. 三级标题
###
4. 四级标题####
5. 五
级标题
#####
6. 六
级标题
######
######列表
1. 有序列表
1.
有序列表
1.
有序列表
* 无序列表
* 无序列表
* 嵌套列表
*
嵌套列表
######
粗体、斜体、删除线
**加粗**是这样用的 *斜体*是这样的 ~~删除~~是这样的
######插入链接
[网易门户的链接](http://www.163.com)
######代码片段
```
import
urllib2
import cookielib
cookiejar =cookielib.CookieJar()
```
######引用
>juest for fun!
######插入图片

######表格
|姓名|年龄|成绩
|------|----|---|
|张三|18|99
|李四|19|100
######公式
$a=b+c+d$
######注脚
Java是很纯粹的oop[^1]语言
Java跨平台的功能是jvm[^2]的功劳
[^1]:面向对象编程
[^2]:java虚拟机器
######流程图
```flowst=>start: start
e=>end: end
op1=>operation: my operation
sub1=>subroutine: my subroutine
cond=>condition: yes or no?
io=>inputoutput: catch something
st->op1->cond
cond(yes)->io->e
cond(no)->sub1(right)->op1
```
######时序图
```sequence
A->B: are you ok?
Note right of B: think
B-->A: nimeiNote left of A: thinkA-->B: nimei
```