(1)標(biāo)題
一級標(biāo)題
# 一級標(biāo)題
二級標(biāo)題
## 二級標(biāo)題
三級標(biāo)題
### 三級標(biāo)題
四級標(biāo)題
#### 四級標(biāo)題
(2)字體
傾斜
*傾斜*
加粗
**加粗**
加粗傾斜
***加粗傾斜***
刪除
~~刪除~~
==高亮==
==高亮==
上標(biāo)1
^上標(biāo)1^
下標(biāo)
~下標(biāo)~
(3)列表
- 無序列表1
- 無序列表2
- 無序列表3
- 無序列表2
- 無序列表1
-
- 無序列表2
- 無序列表3
有序列表
-
有序列表
2.1順序
有序列表
1. 有序列表
2. 有序列表
2.1順序
3. 有序列表
- 待辦事項(xiàng)
- 已完成
- [ ] 待辦事項(xiàng)
- [x] 已完成
(4)表格
周一 | 周二 | 周三 | 周四 | 周五 | 周六 |
---|---|---|---|---|---|
是 | |||||
否 |
| 周一 | 周二 | 周三 | 周四 | 周五 | 周六 |
| :--: | ---- | ---- | ---- | ---- | ---- |
| 是 | | | | | |
| 否 | | | | | |
(5)引用
150166
ndntlntl
bdubvi
> 150166
> > ndntlntl
> > > bdubvi
[插入鏈接](https://cdn.sspai.com/2019/09/11/b3962fc0a7bbc888905ec3e23f1d910b.png?imageView2/2/w/1120/q/40/interlace/1/ignore-error/1)
![插入圖片](markdown%E5%9F%BA%E6%9C%AC%E8%AF%AD%E6%B3%95%E7%BB%83%E4%B9%A0.assets/b3962fc0a7bbc888905ec3e23f1d910b.png)
(6)分割線
---
***
(7)代碼
代碼輸入
`代碼輸入`
代碼框
```代碼語言(java)
代碼框
### (8)其他
目錄:
[toc]
[toc]
轉(zhuǎn)義:
如果不希望把 `*` 識別成列表,或者不希望把 `>` 識別成引用,直接在前面加上反斜杠 `\`
Emoji 表情:
輸入`:表情名稱` 可以觸發(fā)提示 沈跨。:cry:
### (9)mermaid圖:
流程圖:
```mermaid
graph TD;
A --> B
A --> C
B --> D
時(shí)序圖:
stateDiagram
[*] --> s1
s1 --> s2
s2 --> [*]
狀態(tài)圖:
classDiagram
Animal <|-- Duck
Animal <|-- Fish
Animal <|-- Zebra
Animal : +int age
Animal : +String gender
Animal: +isMammal()
Animal: +mate()
class Duck{
+String beakColor
+swim()
+quack()
}
class Fish{
-int sizeInFeet
-canEat()
}
class Zebra{
+bool is_wild
+run()
}
類圖:
sequenceDiagram
Alice->>John: Hello John, how are you?
John-->>Alice: Great!
甘特圖:
gantt
title 工作計(jì)劃
dateFormat YYYY-MM-DD
section Section
A task :a1, 2020-01-01, 30d
Another task :after a1 , 20d
section Another
Task in sec :2020-01-12 , 12d
another task : 24d
餅圖:
pie
title Key elements in Product X
"Calcium" : 42.96
"Potassium" : 50.05
"Magnesium" : 10.01
"Iron" : 5
流程圖:
```mermaid
graph TD;
A --> B
A --> C
B --> D
時(shí)序圖:
stateDiagram
[*] --> s1
s1 --> s2
s2 --> [*]
狀態(tài)圖:
classDiagram
Animal <|-- Duck
Animal <|-- Fish
Animal <|-- Zebra
Animal : +int age
Animal : +String gender
Animal: +isMammal()
Animal: +mate()
class Duck{
+String beakColor
+swim()
+quack()
}
class Fish{
-int sizeInFeet
-canEat()
}
class Zebra{
+bool is_wild
+run()
}
類圖:
sequenceDiagram
Alice->>John: Hello John, how are you?
John-->>Alice: Great!
甘特圖:
gantt
title 工作計(jì)劃
dateFormat YYYY-MM-DD
section Section
A task :a1, 2020-01-01, 30d
Another task :after a1 , 20d
section Another
Task in sec :2020-01-12 , 12d
another task : 24d
餅圖:
pie
title Key elements in Product X
"Calcium" : 42.96
"Potassium" : 50.05
"Magnesium" : 10.01
"Iron" : 5