美文网首页
Markdown 常用语法总结

Markdown 常用语法总结

作者: caoxinyiyi | 来源:发表于2018-06-15 17:10 被阅读4次

    markdown语法简要规则

    标题

    h1 标题

    h2 标题

    h3 标题

    h4 标题

    h5 标题
    h6 标题

    无序列表 (+ - *)

    *1
    *2
    *3

    有序列表

    1.1
    2.2
    3.3

    1. 1
    2. 2

    分割线


    文本样式

    This is bold text 粗体
    This is italic text 斜体
    Strikethrough 删除线


    引用

    一级引用

    二级引用

    三级引用

    四级引用

    另一个引用 (注意: 跟上面的引用之间必须空一行)


    图片与链接

    图片为:![](){ImgCap}{/ImgCap}
    链接为:[]()


    代码

    单行代码 echo "hello world! "

    代码块
    
    Sample text here...
    
    代码高亮显示 Syntax highlighting
    var foo = function (bar) {
      return bar++;
    };
    console.log(foo(5));
    
    echo "hello world!"
    

    表格 (没有正确显示,不知道为啥)

    | Tables | Are | Cool |

    | ------------- |:-------------:| -----:|

    | col 3 is | right-aligned | $1600 |

    | col 2 is | centered | $12 |

    | zebra stripes | are neat | $1 |

    相关文章

      网友评论

          本文标题:Markdown 常用语法总结

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