Mark Down basic grammar

MarkDown syntax

1. Title

#+Space (first level heading)

##+Space (second level heading)

As shown above

2. Font

** (displayed in bold)

* (Shown in italics)

*** (bold italic)

~~ (strikethrough)

3. Quote

">" symbol

4. Dividing line

“—”、"***"

5. Picture

!+[Picture Name]+(Picture Path)

6. Hyperlink

"[Title]+(Hyperlink Address)"

7. List

Enter +, -, * to create an unordered list, start with any number, you can create an ordered list

8. Form

Such as

|姓名|性别|工资|
|王二||4000|
|李四||5000|
|张三||6000|

9. Annotate

Such as
this is a comment[^note]

"[^Note]: Feel free to enter

10.Code

"```" symbol + language used

Guess you like

Origin blog.csdn.net/aclts/article/details/109112912