美文网首页
Markdown备忘

Markdown备忘

作者: EverBao | 来源:发表于2017-04-16 20:40 被阅读0次

    Markdown基础标签

    • 标题: # [内容]。加几个#号是几级标题。
    • 无序列表: - [内容]
    • 有序列表: <1. 2. 3. ......> [内容]
    • 链接: [显示文本](链接地址)
    • 图片: ![](图片地址)
    • 引用: > 引用内容。连续多行引用并为一行。
    • 斜体: *内容*
    • 粗体: **内容**
    • 转义: \符号
    • 分割线: ***

    Markdown代码标签

    • 单行代码: \内容` `。
    • 多行代码: ```多行内容```

    Markdown表格

    |    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

    相关文章

      网友评论

          本文标题:Markdown备忘

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