美文网首页
Markdown 常用的标记 简单记一下

Markdown 常用的标记 简单记一下

作者: PHPNOTE | 来源:发表于2017-03-12 16:42 被阅读0次

    标记代码和文字之间都用空格分开;

    标题 ####
    有序列表 1.
    无序列表 -
    分割线 ----
    代码块 前后都3个点 `
    引用: >
    粗体: 前后2个 *
    斜体: 前后1个 *

    插入链接:[链接描述](http://www.baidu.com)

    插入图片:![图片描述](https://img.haomeiwen.com/i5146440/d09a753789a9ca64.jpg)

    表格 :

    | Tables        | Are           | Cool  |
    | ------------- |:-------------:| -----:|
    | col 3 is      | right-aligned | $1600 |
    | col 2 is      | centered      |   $12 |
    | zebra stripes | are neat      |    $1 |
    
    Tables Are Cool
    col 3 is right-aligned $1600
    col 2 is centered $12
    zebra stripes are neat $1
    dog | bird | cat
    ----|------|----
    foo | foo  | foo
    bar | bar  | bar
    baz | baz  | baz
    
    dog bird cat
    foo foo foo
    bar bar bar
    baz baz baz

    相关文章

      网友评论

          本文标题:Markdown 常用的标记 简单记一下

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