Markdown语法大全

记录MarkDown各个格式,方便编辑MardkDown文件时查阅参考

一、标题


# 一级标题
## 二级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题

一级标题

二级标题

三级标题

四级标题

五级标题
六级标题
一级标题
======================
二级标题
---------------------

一级标题

二级标题

二、字符效果和横线等


~~删除线~~

*斜体字*  _斜体字_

**粗体**  __粗体__

***粗斜体*** ___粗斜体___

删除线

斜体字 斜体字

粗体 粗体

粗斜体 粗斜体

三、引用 Blockquotes


> 引用文本 Blockquotes

引用的行内混合 Blockquotes

> 引用:插入超链接,[普通链接](https://www.apposs.cloud/)

引用文本 Blockquotes

引用的行内混合 Blockquotes

引用:插入超链接,普通链接

四、锚点与链接


[普通链接](https://www.apposs.cloud/)

[普通链接带标题](https://www.apposs.cloud/ "普通链接带标题")

直接链接:<https://www.apposs.cloud>

邮箱地址自动链接: [mailto:[email protected]](mailto:[email protected])

普通链接

普通链接带标题

直接链接:https://www.apposs.cloud

邮箱地址自动链接: mailto:[email protected]

五、提示标签


:::tip
这是一段提示信息 [附带链接](https://www.apposs.cloud)
:::
:::warning
这是一段警告信息 [附带链接](https://www.apposs.cloud)
:::
:::danger
这是一段危险信息 [附带链接](https://www.apposs.cloud)
:::

这是一段提示信息 附带链接

这是一段警告信息 附带链接

这是一段危险信息 附带链接

六、多语言代码高亮


行内代码:`npm install vue`

行内代码2:``npm install vue``

行内代码:npm install vue

行内代码2:npm install vue

JS代码

function test() {
    console.log("Hello world!");
}

HTML代码

<html>
    <head>
        <mate charest="utf-8" />
        <title>Hello world!</title>
    </head>
    <body>
        <h1>Hello world!</h1>
    </body>
</html>

七、列表


无序列表(减号)

- 列表一
- 列表二
- 列表三
  • 列表一
  • 列表二
  • 列表三

无序列表(星号)

* 列表一
* 列表二
* 列表三
  • 列表一
  • 列表二
  • 列表三

无序列表(加号和嵌套)

+ 列表一
+ 列表二
    + 列表二-1
    + 列表二-2
    + 列表二-3
+ 列表三
    * 列表一
    * 列表二
    * 列表三
  • 列表一
  • 列表二
    • 列表二-1
    • 列表二-2
    • 列表二-3
  • 列表三
    • 列表一
    • 列表二
    • 列表三

有序列表

1. 第一行
    - 列表一
2. 第二行
3. 第三行
  1. 第一行
    • 列表一
  2. 第二行
  3. 第三行

八、图片

Image:

![](https://pandao.github.io/editor.md/examples/images/4.jpg)

> Follow your heart.

![](https://pandao.github.io/editor.md/examples/images/8.jpg)

> 图为:厦门白城沙滩

图片加链接 (Image + Link):

[![](https://pandao.github.io/editor.md/examples/images/7.jpg)](https://pandao.github.io/editor.md/examples/images/7.jpg "李健首张专辑《似水流年》封面")

> 图为:李健首张专辑《似水流年》封面

Image:

Follow your heart.

图为:厦门白城沙滩

图片加链接 (Image + Link):

图为:李健首张专辑《似水流年》封面

九、绘制表格

| 项目        | 价格   |  数量  |
| --------   | -----:  | :----:  |
| 计算机      | $1600   |   5     |
| 手机        |   $12   |   12   |
| 管线        |    $1    |  234  |
项目 价格 数量
计算机 $1600 5
手机 $12 12
管线 $1 234

First Header  | Second Header
------------- | -------------
Content Cell  | Content Cell
Content Cell  | Content Cell 
First Header Second Header
Content Cell Content Cell
Content Cell Content Cell

| First Header  | Second Header |
| ------------- | ------------- |
| Content Cell  | Content Cell  |
| Content Cell  | Content Cell  |
First Header Second Header
Content Cell Content Cell
Content Cell Content Cell

| Function name | Description                    |
| ------------- | ------------------------------ |
| `help()`      | Display the help window.       |
| `destroy()`   | **Destroy your computer!**     |
Function name Description
help() Display the help window.
destroy() Destroy your computer!

| Left-Aligned  | Center Aligned  | Right Aligned |
| :------------ |:---------------:| -----:|
| col 3 is      | some wordy text | $1600 |
| col 2 is      | centered        |   $12 |
| zebra stripes | are neat        |    $1 |
Left-Aligned Center Aligned Right Aligned
col 3 is some wordy text $1600
col 2 is centered $12
zebra stripes are neat $1

| Item      | Value |
| --------- | -----:|
| Computer  | $1600 |
| Phone     |   $12 |
| Pipe      |    $1 |
Item Value
Computer $1600
Phone $12
Pipe $1

十、水平线


***
---
___