Skip to content

Latest commit

 

History

History

Markdown

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Markdown入门语法

  • 标题

    # 一级标题
    ## 二级标题
    ### 三级标题
    #### 四级标题
    ##### 五级标题
    ###### 六级标题

  • 列表

    *、-、+ 都可用于列表

  • 空行换行

    两个空格表示空行或者换行,空行也表示换行

  • 引用

    > 表示引用 > > > 可以嵌套很多层

  • 加粗

    ** ** 两个双星号包括内容

  • 斜体

    * * 一个双星号包括内容

  • 图片与链接

    插入链接与插入图片的语法很像,区别在一个 !号

    ![desc](url){ImgCap}{/ImgCap} 表示图片

    [desc](url) 表示超链接

  • 表格

    | Tables        | Are           | Cool  |
    | :-----------: |--------------:| ------|
    | center-aligned| right-aligned | $1600 |
    | col 2 is      | centered      |   $12 |
    | zebra stripes | are neat      |    $1 |

    Tables Are Cool
    center-aligned right-aligned $1600
    col 2 is centered $12
    zebra stripes are neat $1
  • 代码引入

    ` 用两个表示当行的,或者两个tab
    ``` 用三个开头,三个结束表示成段的代码

  • 横线(分割线)

    ***  ---  ___(三个及以上)
    
  • 空行和空格

    <br />  空行
    &nbsp;  空格
  • 流程图

    待续...