正文
—– 标题 —–
最高阶标题
第二阶标题
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
- Red
- Green
- 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写法(不适用):
a
alert('Hello World') array(1) { [0]=> array(2) { ["id"]=> int(8) ["name"]=> 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](https://www.baidu.com/img/baidu_jgylogo3.gif "百度")
插入形式
![](/blog/images/20190107/20190107150249.jpg)
—– 参考形式 —–
参考形式:
![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
GitHub Flavored Markdown 之GithubHelp
https://daringfireball.net/projects/markdown/syntax
Github Flavored Markdown 的增强部分