Markdown 语法使用实例


Markdown是一种可以使用普通文本编辑器编写的标记语言,通过简单的标记语法,它可以使普通文本内容具有一定的格式。


正文

—– 标题 —–

最高阶标题

第二阶标题

H1

H2

H3

H4

H5
H6
最高阶标题
=============

第二阶标题
-------------

# H1
## H2
### H3
#### H4
##### H5
###### H6

—– 文本样式 —–

段落 : 段落之间空一行

换行符 : 一行结束时输入两个空格

链接 :Title [Title](URL)

加粗 :Bold **Bold** Bold __Bold__

斜体字 :Italics *Italics* Italics _Italics_

删除线 :text ~~text~~

高亮 :==text== ==text==

列表 :* 添加星号成为一个新的列表项。 * 内容

引用 :> 引用内容 > 内容

内嵌代码 : alert('Hello World');

`alert('Hello World');`

分隔线/画水平线 (HR) :

* * *

***

*****

- - -

---

无序列表:

* Candy.
* Gum.
* Booze.
  • Candy.
  • Gum.
  • Booze.
+ Candy.
+ Gum.
+ Booze.
  • Candy.
  • Gum.
  • Booze.
- Candy.
- Gum.
- Booze.
  • Candy.
  • Gum.
  • Booze.

有序列表:

1. Red
2. Green
3. Blue
  1. Red
  2. Green
  3. Blue

行内链接:

This is an example link.

This is an example link.

This is an [example link](http://example.com/).

This is an [example link](http://example.com/ "With a Title").

参考链接:

I get 10 times more traffic from Google than from Yahoo or MSN.

I get 10 times more traffic from [Google][1] than from [Yahoo][2] or [MSN][3].

[1]: http://google.com/ "Google"
[2]: http://search.yahoo.com/ "Yahoo Search"
[3]: http://search.msn.com/ "MSN Search"

—– 写代码 —–

内嵌代码 回勾号方式:

<p>a</p>alert('Hello World')

There is a literal backtick (`) here.

`<p>a</p>alert('Hello World')` 

``There is a literal backtick (`) here.``

内嵌代码 code方式:

<p>a</p>alert('Hello World')

<code><p>a</p>alert('Hello World')</code>

标准Markdown (1个Tab缩进或4个空格位):

<p>a</p>alert('Hello World')
array(1) {
    [0]=>
    array(2) {
        ["id"]=>
        int(8)
        ["name"]=>
        string(3) "tom"
    }
}

GFM(GitHub Flavored Markdown) 使用三个回勾号``` :

<p>a</p>alert('Hello World')
array(1) {
    [0]=>
    array(2) {
        ["id"]=>
        int(8)
        ["name"]=>
        string(3) "tom"
    }
}

区块引用 写法(不适用):

a

alert(‘Hello World’)

array(1) { [0]=>

array(2) {
    ["id"]=>
    int(8)

    ["name"]=>
    string(3) "tom"
} }
> <p>a</p>
> alert('Hello 
> World') 
>
> array(1) {
>     [0]=>
>
>     array(2) {
>         ["id"]=>
>         int(8)
>
>         ["name"]=>
>         string(3) "tom"
>     }
> }

pre-code 写法(不适用):


a

alert('Hello World') array(1) { [0]=> array(2) { ["id"]=> int(8) ["name"]=> string(3) "tom" } }
<pre><code>
<p>a</p>alert('Hello World')

array(1) {
    [0]=>
    array(2) {
        ["id"]=>
        int(8)
        ["name"]=>
        string(3) "tom"
    }
}
</code></pre>

blockquote 引用(不适用):

a

alert('Hello World') array(1) { [0]=> array(2) { ["id"]=> int(8) ["name"]=> string(3) "tom" } }
<blockquote>
<p>a</p>alert('Hello World')
array(1) {
    [0]=>
    array(2) {
        ["id"]=>
        int(8)
        ["name"]=>
        string(3) "tom"
    }
}
</blockquote>

html的 xmp写法(不适用):

<p>a</p>alert('Hello World') array(1) { [0]=&gt; array(2) { ["id"]=&gt; int(8) ["name"]=&gt; string(3) "tom" } }
<xmp>
<p>a</p>alert('Hello World') 
array(1) {
    [0]=>
    array(2) {
        ["id"]=>
        int(8)
        ["name"]=>
        string(3) "tom"
    }
}
</xmp>

—– 图片 —–

行内形式:alt text

![alt text](https://www.baidu.com/img/baidu_jgylogo3.gif "百度")

插入形式

![](/blog/images/20190107/20190107150249.jpg)

—– 参考形式 —–

参考形式:

alt text

alt img

![alt text][1]

![alt img][2]


[1]: https://www.baidu.com

[2]: https://www.baidu.com/img/baidu_jgylogo3.gif "百度"

—– 绘制表格 —–

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

—– 文档结构 —–

├──demo
│   ├──public
│   │    └──css
│   │        └──bootstrap.min.css
│   ├──templates
│   │    └──newlists.php
│   ├──db.php
│   └──index.php






参考资料

https://baike.baidu.com/item/markdown/3245829?fr=aladdin

Markdown 语法说明 (简体中文版)

Markdown: Basics (快速入门)

GitHub Flavored Markdown

GitHub Flavored Markdown 之GithubHelp

https://daringfireball.net/projects/markdown/syntax

Github Flavored Markdown 的增强部分

jekyll

《GitHub 风格的 Markdown 正式规范》发布

https://www.zybuluo.com/mdeditor

Markdown语法:表示目录文件结构,方法汇总

Mastering Markdown


返回