段落、标题、区块代码

A First Level Header

A Second Level Header

Now is the time for all good men to come to the aid of their country.This is just a regular paragraph.

The quick brown fox jumped over the lazy dog's back.

#header1
##header2
###header3
####header4
#####header5
######header6

header1

header2

header3

header4

header5
header6
> This is a blockquote.
> 
> This is the second paragraph in the blockquote.
>
> ## This is an H2 in a blockquote

This is a blockquote.

This is the second paragraph in the blockquote.

This is an H2 in a blockquote

修饰和强调

*xx*,_xx_: 斜体
**xx**,__xx__:加粗

some of those words *are emphasized*.
Some of those words _are emphasized also_.
Use two asterisks for **string emphasiezd**.
Or, if you prefer, __use two underscores instead__.

some of those words are emphasized.

Some of those words are emphasized also.

Use two asterisks for string emphasiezd.

Or, if you prefer, use two underscores instead.

列表

1.无序列表

星号:

* Candy.
* Gum.
* Booze.

加号:

+ Candy.
+ Gum.
+ Booze.

减号:

- Candy.
- Gum.
- Booze.

2.有序列表

数字:

1. Candy.
2. Gum.
3. Booze.
* A list item.

    With multiple paragraphs.
* Another list item.

    hahahaha.
  1. Candy.
  2. Gum.
  3. Booze.
  4. A list item.

    With multiple paragraphs.

  5. Another list item.

    hahahaha.

链接

  1. 行内链接

    [text](URL "Title")
    

    This is an example link.

    This is an example link.

  2. 参考链接

    I got 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://msn.search.com/ "MSN Search"
    

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

图片

  1. 行内形式

    ![alt text](/path/to/img.jpg "Title")
    [![alt text](ImageURL "Image title")](URL "url title")
    

    {:target="_blank"}

    ps:{:target="_blank"}兼容性一般,多数第三方平台不支持跳转

  2. 参考形式

    ![alt text][id]
    [id]: /path/to/img.jpg "Title"
    
  3. 输出html

    <img src="path/to/img.jpg" alt="alt text" title="Title" />
    

    Ex:

    alt text alt text

代码