Markdown 语法介绍

何甫
2023-12-01

# MarkDown学习笔记

 

## 二级标题

 

### 三级标题

 

#### 四级标题

 

##### 五级标题

 

###### 六级标题

 

##### 文本强调:

 

*斜体*

**加粗**

***粗斜体***

 

###### 列表:

 

无序列表:

* 无序列表

* 子项

 

+ 无序列表

+ 子项

 

- 无序列表

- 子项

-

 

有序列表

1. 第一行

2. 第二行

 

###### 组合:

 

* 产品介绍(子项无项目符号)

>列表里面放内容

* 产品特点

1. 特点1

2. 特点2

3. 特点3

---

* 产品功能

- 功能1

- 功能2

- 功能3

2013\. 功能目标

 

###### 链接

 

Inline-style 内嵌方式:

this is [这是一个链接](https://www.google.com/ "这是google网站")

[听说这是链接文字](http://www.google.com)

See my [About](/about/) page for details.

 

Reference-style 引入方式

[link test][id]

this is [an example][1] re

this is [the other example][2] ns

 

[1]: http://example.com/ 'sss'

[2]: http://www.google.com/ 'title'

[3]: http://www.pptbz.com/pptpic/UploadFiles_6909/201211/2012111719294197.jpg

 

use the `printf()` function

 

图片

![img](http://www.pptbz.com/pptpic/UploadFiles_6909/201203/2012031220134655.jpg "title")

![the img s][3]

 

高亮

这是一片介绍`markdown`语法文章

特殊的 ```高亮```

语法高亮:

 

```html

<div>height</div>

```

 

```css

body{font-size: 12px}

```

 

```javascript

var s = 'string'

console.log(s)

```

 

在该行开头缩进4个空格或一个制表符(tab)

<strong>Blockquotes 引用:</strong>

> Email-style angle brackets

> are used for blockquotes.

> > And, they can be nested.

> #### Headers in blockquotes

> * You can quote a list.

> * Etc.

 

\*literal asterisks\*

 类似资料: