美文网首页
学习markdown

学习markdown

作者: 梦行乌托邦 | 来源:发表于2016-05-14 15:27 被阅读6次

    标题

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

    一级标题

    二级标题

    三级标题

    四级标题

    五级标题

    空行

      
      
     
      
    

    分割线

    ---
    ***
    ___
    



    无序列表1

    * item
    * item
    * item  
    
    • item
    • item
    • item

    无序列表2

    - item
    - item
    - item
    
    • item
    • item
    • item

    无序列表3

    + item
    + item
    + item
    
    • item
    • item
    • item

    有序列表

    1.  item
    1.  item
    1.  item
    
    1. item
    2. item
    3. item

    引用

    > 床前后明月光,疑似地上霜。举头望明月,低头思故乡。
    

    床前后明月光,疑似地上霜。举头望明月,低头思故乡。

    图片

    ![insert img](http://github.global.ssl.fastly.net/images/modules/logos_page/GitHub-Mark.png 'insert-img-title')
    
    insert imginsert img

    链接

    [不如的博客](http://bruce-sha.github.io 'bruce-blog-title')
    

    不如的博客

    粗体

    **我是被左右两个星号包围的粗体**
    

    我是被左右两个星号包围的粗体

    斜体

    *我是被左右一个星号包围的斜体*
    

    我是被左右一个星号包围的斜体

    表格

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

    代码框

    `alert('this is js code')`
    

    alert('this is js code')

    相关文章

      网友评论

          本文标题:学习markdown

          本文链接:https://www.haomeiwen.com/subject/vfnmrttx.html