一苇瓣、標題設置
代碼:
# 一級
## 二級
### 三級
#### 四級
##### 五級
###### 六級
Headline1
===
Headline2
---
顯示效果:
一級
二級
三級
四級
五級
六級
Headline1
Headline2
二、鏈接與圖片
代碼:
[百度](http://www.baidu.com)
[Google](http://www.google.com)

Deemo
三、代碼與引用
代碼:
#include <iostream>
using namespace std;
void main()
{
int a = 0;
float b = 1.0;
char c = 'm';
return (float)(a+b);
}
引用:
>quote 1
>>quote 2
> quote 3
>> quote 4
quote 1
quote 2
quote 3
quote 4
四、加粗與傾斜
代碼:
__1__ , **2** , _3_ , *4*
顯示:
1 , 2 , 3 , 4
五垫蛆、表格
代碼:
|No.|Name|IP|Support|
|---:|:---:|:---|:---:|
|1|Ark|192.168.253.5|Y|
|2|Void|127.0.0.1|N|
|3|Beast|192.168.33.65|Y|
顯示:
No. | Name | IP | Support |
---|---|---|---|
1 | Ark | 192.168.253.5 | Y |
2 | Void | 127.0.0.1 | N |
3 | Beast | 192.168.33.65 | Y |
六壹将、列表(無序與有序列表)
代碼:
+ animal
- human
- monkey
- lion
+ plant
- flower
- grass
3. red
2. green
9. blue
12884774. yellow
顯示:
- animal
- human
- monkey
- lion
- plant
- flower
- grass
- red
- green
- blue
- yellow
七嗤攻、流程圖(簡書不支持)
代碼:
st=>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
顯示:
st=>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