首页 > 代码库 > Markdown使用
Markdown使用
# 一级标题
一级标题
## 二级标题
二级标题
### 三级标题
三级标题
#### 四级标题
四级标题
##### 五级标题
五级标题
无序列表
* 1
* 2
* 3
- 1
- 2
- 3
有序列表
1. 1
2. 2
3. 3
- 1
- 2
- 3
引用
>这里是引用
这里是引用
图片
![mou_icon](http://mouapp.com/Mou_128.png)
链接
[百度](www.baidu.com)
百度
粗体
**这是粗体**
这是粗体
斜体
*这是斜体*
这是斜体
表格
| 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
- 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
```
Markdown使用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。