美文网首页
Markdown基本语法总结

Markdown基本语法总结

作者: iceoreocheese | 来源:发表于2019-01-30 12:57 被阅读0次

    一、标题

    Markdown 支持两种标题的语法,类 Setext 和类 atx 形式。

    1. 类 Setext 形式是用底线的形式,利用 = (最高阶标题)和 - (第二阶标题),任何数量的 = 和 - 都可以有效果。例如:

    this is an h1

    this is an h2

    类 Setext 形式
    1. 类 atx 形式
      类 Atx 形式则是在行首插入 1 到 6 个 # ,对应到标题 1 到 6 阶,# 和「一级标题」之间建议保留一个字符的空格,这是最标准的 。

    this is an h1

    this is an h2

    this is an h3

    类 atx 形式

    二、修辞和强调

    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.

    修辞和强调

    三、列表

    分有序列表和无序列表两种。

    无序列表(注意空格)三种符号的效果都是等价的。

    • 文本1
    • 文本2
    • 文本3


      无序列表

    有序列表(注意空格)

    1. 文本1
    2. 文本2
    3. 文本3


      有序列表

    四、分割线

    符号的效果都是等价的。






    分割线

    五、链接

    Markdown 支援两种形式的链接语法: 行内 和 参考 两种形式

    1. 行内形式
      This is an example link.
      This is an example link.
    链接1
    链接2
    1. 参考形式
      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.

    六、图片

    1. 行内形式
    行内形式
    1. 参考形式(还是要注意空行)

    七、代码

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

    I strongly recommend against using any <blink> tags.

    I wish SmartyPants used named entities like &mdash;
    instead of decimal-encoded entites like &#8212;.

    八、区块代码(引用)

    !区块代码](https://img.haomeiwen.com/i16096843/b63223aaf9bc9a67.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

    区块代码
    区块代码引用

    This is a blockquote.

    This is the second paragraph in the blockquote.

    This is an H2 in a blockquote

    表格

    表格
    表头 表头
    单元格 单元格
    单元格 单元格

    相关文章

      网友评论

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

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