markdown guide

markdown 语法学习

标题

一级标题

二级标题

分割线

分割线 ***


代码段

第一种:简单文字出现一个代码框。使用

。(不是单引号而是左上角的ESC下面~中的

      type Reader interface {
      Read(p []byte) (n int, err error)
      }

第二种:大片文字需要实现代码框。使用Tab和四个空格。

列表

无序列表:使用 *加一个空格

  • 无需列表1
  • 无序列表2
  • 无序列表3

有序列表:使用 数字 加一个英文句点

  1. 有序列表
  2. 有序列表
  3. 有序列表
  4. 有序列表
  5. 有序列表

表格

Item Value
Computer $1600
Phone $12
Pipe $1

斜体

斜体

加粗

加粗

粗斜体

粗斜体

块注释

dfdf

链接

  • 内联方式:This is an example link.
    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"

图片

Inline-style 内嵌方式:


alt text
alt text

Reference-style 引用方式:
![alt text][logo]
[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "title text"

你可能感兴趣的:(markdown guide)