美文网首页工作生活
Markdown基本语法总结

Markdown基本语法总结

作者: WoodyYan | 来源:发表于2019-07-03 14:37 被阅读0次

    斜体:*Italic*_Italic_Italic

    **Bold**__Bold__Bold

    # Heading 1Heading 1

    =========

    Heading 1

    ## Heading 2Heading 2

    ---------

    Heading 2

    [Link](http://a.com)[Link][1]

    [1]: http://b.org

    Link

    ![Image](http://url/a.png)![Image][1]

    [1]: http://url/b.jpg

    > Blockquote Blockquote

    * List

    * List

    * List

    - List

    - List

    - List

    List

    List

    List

    1. One

    2. Two

    3. Three

    1) One

    2) Two

    3) Three

    One

    Two

    Three

    Horizontal Rule

    ---

    Horizontal Rule

    ***

    Horizontal Rule

    `Inline code` with backticks Inline code with backticks

    ```

    # code block

    print '3 backticks or'

    print 'indent 4 spaces'

    ```

    ····# code block

    ····print '3 backticks or'

    ····print 'indent 4 spaces'

    # code block 

    print '3 backticks or' 

    print 'indent 4 spaces'

    相关文章

      网友评论

        本文标题:Markdown基本语法总结

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