Summary of Markdown Simple Syntax Usage

1. The title
is used “#”, one “#”represents the first-level title, and it is accumulated in turn. For example: “# 一级标题” “## 二级标题”wait. 2. Use
italic font , for example: . 3. Use bold font , for example: . 4. Italic and bold use , for example: . 5. Strikethrough Use , for example: . 6. Reference use .
“*”“*Hello world*”

“**”“**Hello world**”

“***”“***Hello world***”

“~~”~~Markdown~~

“>”

7. Split line
Use “---”or “***”.
8. Picture
use The “![图片名字](图片地址)”address can be local or network address, for example:
insert image description here
9. Hyperlink
use “[超链接名字](地址)”.
10. Ordered lists
are used “1.+空格”.
11. Unordered list is
used “-(减号)+空格”.
12. Form
usage

|姓名|性别|生日|
|--|--|--|
|张三||2000.02.01|

For example:
insert image description here
Result: insert image description here
13. Code
Use

```java

For example:
insert image description here
Result:
insert image description here

Guess you like

Origin blog.csdn.net/weixin_43605266/article/details/122327631