10
09/2014
Markdown 语法
无序列表 ul 用 *,+,- 带空格
* 1111 * 2222
- 1111
- 2222
有序列表 ol 用任意数字带点(句号)
1. 1111 2. 2222
- 1111
- 2222
横线 hr 三个以上的* 和 - 或者 _
* * * 1 *** 2 ***** 3 - - - 4 ---------------------------------------
1
2
3
4
图片
![alt文字](https://secure.gravatar.com/avatar/6d04c24c1d3fc8dfbb98c97b6ba99bb8?s=48 'title文字')
链接
这是 [链接文字](http://example.com/ "链接title")
这是 链接文字
或者
<http://example.com/>
标题 连续 == 一级;连续 — 二级
his is an H1 ============= This is an H2 -------------
This is an H1
This is an H2
# This is an H1 ## This is an H2 ###### This is an H6
This is an H1
This is an H2
This is an H6
块缩进 blockquote
> This is the first level of quoting. > > > This is nested blockquote. > > Back to the first level.
This is the first level of quoting.
This is nested blockquote.
Back to the first level.
加重 。em 是 或者 下划线 包裹;strong 是 * 或者 __ 包裹)
*single asterisks* _single underscores_ **double asterisks** __double underscores__
single asterisks
single underscores
double asterisks
double underscores
用 ` 来包裹代码,
`<ol> <li>1111</li><li>2222</li> </ol>`
会生成
<code><ol> <li>1111</li><li>2222</li> </ol></code>
via markdown syntax
上面这个 markdown syntax 页面本身就是用 markdown 写的
两个对照一下,就能学到很多技巧。