美文网首页
Markdown语法

Markdown语法

作者: _哦_ | 来源:发表于2018-03-11 15:02 被阅读0次

    Markdown语法说明(简体中文版)

    1. 链接

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

    • 行内形式
      行内形式的连接:
      This is an [example link](http://example.com/).
      This is an example link.
      你也可以选择性的加上 title 属性:
      This is an [example link](http://example.com/ "With a Title").
      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"
      I get 10 times more traffic from Google than from Yahoo or MSN.
      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.

    2. 图片

    图片的语法和链接很像。

    • 行内形式(title 是选择性的):
      ![live.jpeg](https://img.haomeiwen.com/i9650461/e32c55ea94bdab74.jpeg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
      live.jpeg
    • 参考形式:

    ![alt text][id]
    [id]: .... "Title"

    alt text

    3. 代码

    在一般的段落文字中,你可以使用反引号 ` 来标记代码区段,区段内的 &<> 都会被自动的转换成 HTML 实体,

    这项特性让你可以很容易的在代码区段内插入 HTML 码:
    I strongly recommend against using any <blink> tags.
    I strongly recommend against using any <blink> tags.
    I wish SmartyPants used named entities like &mdash;
    I wish SmartyPants used named entities like &mdash;

    4. 分隔线

    你可以在一行中用三个以上的 * * - _ * 来建立一个分隔线,行内不能有其他内容。

    你也可以在 * 或者 - 中间插入空格。


    分隔线

    相关文章

      网友评论

          本文标题:Markdown语法

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