美文网首页我的Mac学习路
我的Markdown学习之路

我的Markdown学习之路

作者: TheAris | 来源:发表于2014-09-07 10:23 被阅读183次
    Markdown.jpg

    1. 段落、标题、区块代码

    一级标题

    二级标题

    三级标题

    四级标题

    五级标题
    六级标题
    代码:
    #一级标题   
    ##二级标题
    ###三级标题
    ####四级标题
    #####五级标题
    

    2.修辞和强调

    Markdown 使用星号和底线来标记需要强调的区段。

    例如:

    Some of these words are emphasized.
    Some of these words are emphasized also.
    Use two asterisks for strong emphasis.
    Or, if you prefer, use two underscores instead.

    代码
    Some of these words *are emphasized*.
    Some of these words _are emphasized also_.
    Use two asterisks for **strong emphasis**.
    Or, if you prefer, __use two underscores instead__.
    

    3.列表

    **无序列表使用星号、加号和减号来做为列表的项目标记,这些符号是都可以使用的; **

    星号:

    • Candy.
    • Gum.
    • Booze.

    加号:

    • Candy.
    • Gum.
    • Booze.

    和减号

    • Candy.
    • Gum.
    • Booze.

    * Candy.
    * Gum.
    * Booze.
    
    + Candy.
    + Gum.
    + Booze.
    
    - Candy.
    - Gum.
    - Booze.
    

    有序的列表则是使用一般的数字接着一个英文句点作为项目标记:

    1. Red
    2. Green
    3. Blue

    1. Red
    2. Green
    3. Blue
    

    4.链接

    Markdown 支援两种形式的链接语法: 行内 和 参考 两种形式,两种都是使用角括号来把文字转成链接。

    行内形式是直接在后面用括号直接接上链接:
    This is an example link.

    This is an [example link](http://example.com/).
    

    你也可以选择性的加上 title 属性:
    This is an example link.

    This is an [example link](http://example.com/ "With a Title").
    

    参考形式的链接让你可以为链接定一个名称,之后你可以在文件的其他地方定义该链接的内容:

    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"
    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"
    title 属性是选择性的,链接名称可以用字母、数字和空格,但是不分大小写:

    I start my morning with a cup of coffee and
    [The New York Times][NY Times].
    [ny times]: http://www.nytimes.com/

    I start my morning with a cup of coffee and
    [The New York Times][NY Times].
    [ny times]: http://www.nytimes.com/
    

    5.图片

    图片的语法和链接很像。

    • 行内形式(title 是选择性的):
    Fight.JPG
    ![Fight.JPG](https://img.haomeiwen.com/i41733/
    7d9418830b8c2506.JPG 'Fight For Dream')
    
    • 参考形式:

    ![Geek.jpg][1]
    [1]:https://img.haomeiwen.com/i41733/6e5461773b550597.jpg "极客范"

    ![Geek.jpg][1]
    [1]:https://img.haomeiwen.com/i41733/
    6e5461773b550597.jpg "极客范"
    

    6.代码

    在一般的段落文字中,你可以使用反引号 ` 来标记代码区段,区段内的 &、< 和 > 都会被自动的转换成 HTML 实体,这项特性让你可以很容易的在代码区段内插入 HTML 码:

    I strongly recommend against using any <blink> tags.

    I wish SmartyPants used named entities like
    instead of decimal-encoded entites like .

    如果要建立一个已经格式化好的代码区块,只要每行都缩进 4 个空格或是一个 tab 就可以了,而 &、< 和 > 也一样会自动转成 HTML 实体。

    7.其他

    >表示引用

    ---表示分界线

    Markdown 可以利用反斜杠来插入一些在语法中有其它意义的符号,例如:如果你想要用星号加在文字旁边的方式来做出强调效果(但不用标签),你可以在星号的前面加上反斜杠:**

    *literal asterisks*

    \*literal asterisks\*
    

    我的参考

    2014-9-6-5:27pm

    相关文章

      网友评论

        本文标题:我的Markdown学习之路

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