# 一级标题
一级标题
## 二级标题
二级标题
### 三级标题
三级标题
#### 四级标题
四级标题
##### 五级标题
五级标题
无序列表
* 1
* 2
* 3
有序列表
1. 1
2. 2
3. 3
- 1
- 2
- 3
引用
>这里是引用
这里是引用
图片


链接
百度
粗体
**这是粗体**
这是粗体
斜体
*这是斜体*
这是斜体
表格
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
Tables | Are | Cool |
col 3 is |
right-aligned |
$1600 |
col 2 is |
centered |
$12 |
zebra stripes |
are neat |
$1 |
代码框
```C
#include<stdio.h>
int mian()
{
printf("Hello world !\n");
return 0;
}
````
#include<stdio.h>
int mian()
{
printf("Hello world !\n");
return 0;
}
分割线
***
---
___
代办列表
-[] 1
- [x] 2
流程图
时序图
```
sequenceDiagram
A->>B: How are you?
B->>A: Great!
```
甘特图
```
gantt
dateFormat YYYY-MM-DD
section S1
T1: 2014-01-01, 9d
section S2
T2: 2014-01-11, 9d
section S3
T3: 2014-01-02, 9d
```
Markdown使用
原文:http://www.cnblogs.com/Mzqk/p/6674606.html