Markdown使用

# 一级标题

一级标题

 

## 二级标题

 

二级标题

### 三级标题

三级标题

#### 四级标题

四级标题

##### 五级标题

五级标题
无序列表
* 1
* 2
* 3
  • 1
  • 2
  • 3
有序列表
1. 1
2. 2
3. 3
  1. 1
  2. 2
  3. 3

引用

>这里是引用

这里是引用

图片
![mou_icon](http://mouapp.com/Mou_128.png)

mou_icon

链接

百度

粗体

**这是粗体**

 这是粗体

斜体
*这是斜体*

 这是斜体

表格

| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
TablesAreCool
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 ! ");
return 0;
}
````
#include<stdio.h>
int mian()
{
printf("Hello world !
");
return 0;
}

分割线

***

---

___




代办列表

-[] 1
- [x] 2
  •  1
  •  2

流程图

```
graph LR
A-->B
```

时序图

 
```
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
```
 
 
原文地址:https://www.cnblogs.com/Mzqk/p/6674606.html