Markdown 书写方式


  1. 斜体
    _content_

  2. 粗体
    **content**

  3. header
    #(number) 代表header number

###This is header 3.
  1. 链接
    [text context](url)
[Search for it.](www.google.com)
[You're *really, really* going to want to see this](www.dailykitten.com).
  1. 图片
    ![text](url)
![A Catburn](http://octodex.github.com/images/octdrey-catburn.jpg)
  1. reference

Do you want to [see something fun][a fun place]?
Well, do I have [the website for you][another fun place]!
[a fun place]: www.zombo.com
[another fun place]: www.stumbleupon.com

![The first father][First Father]
![The second first father][Second Father]
[First Father]: http://octodex.github.com/images/founding-father.jpg
[Second Father]: http://octodex.github.com/images/foundingfather_v2.png

  1. Blockquotes

    > paragraph

  2. 列表
    无序列表 * content
    有序列表 1. content
    嵌套列表 <空格>* content

  3. 换行
    hard(间距大) 空一行
    soft(间距小) 结尾用两个空格

  4. 画表格

| Number     | Next number | Previous number |
| :--------- |:----------- | :-------------- |
| Five       | Six         | Four            |
| Ten        | Eleven      | Nine            |
| Seven      | Eight       | Six             |
| Two        | Three       | One             |
  1. 代码书写
```
code
```

或者

~~~
code
~~~

详情可见markdown tutorial


文章作者: Ellen Dan
版权声明: 本博客所有文章除特別声明外,均采用 CC BY-SA 4.0 许可协议。转载请注明来源 Ellen Dan !
评论
  目录