美文网首页我爱编程
Markdown 语法介绍

Markdown 语法介绍

作者: hailiu13 | 来源:发表于2018-04-11 15:30 被阅读0次

    Markdown 语法介绍

    目录

    [TOC]
    简书不支持,可用锚点实现

    标题

    # 一级标题
    ## 二级标题
    ### 三级标题
    #### 四级标题
    ##### 五级标题
    ###### 六级标题
    

    锚点

    点击跳转

    引用

    >
    >>
    

    列表

    列表项目标记通常放在最左边,项目标记后面要接一个字符的空格。

    无序列表

    无序列表:使用星号、加号或是减号作为列表标记

    - Red
    - Green
    - Blue
    

    有序列表

    1. Red
    2. Green
    3. Blue
    

    可选列表

    - [ ] 不勾选
    - [x] 勾选
    

    代码

    require 'redcarpet'
    markdown = Redcarpet.new("Hello World!")
    puts markdown.to_html
    

    强调

    在Markdown中,可以使用 * 和 _ 来表示斜体和加粗。

    斜体

    *Coding,让开发更简单*
    _Coding,让开发更简单
    

    加粗

    **Coding,让开发更简单**
    __Coding,让开发更简单__
    

    自动链接

    [我的简书](https://www.jianshu.com/u/3172ba2c7721)
    

    分割线

    3个以上-符号

    ---
    

    图片

    ![Alt text](/path/to/img.jpg)
    或
    ![Alt text](/path/to/img.jpg "Optional title")
    或
    <img src="https://cloud.githubusercontent.com/assets/72919/2874231/3af1db48-d3dd-11e3-98dc-6066f8bc766f.png" alt="" />
    

    表格

    在 Markdown 中,可以制作表格,例如:

    First Header | Second Header | Third Header
    ------------ | ------------- | ------------
    Content Cell | Content Cell  | Content Cell
    Content Cell | Content Cell  | Content Cell
    

    其他和注意

    流程图、数学公式这种比较复杂的样式,其实并不建议这么手动的去组织,包括上面的表格,不妨直接html、图片或者找一些工具类的方法

    • 添加Tab制表符或者4个空格的缩进

    相关文章

      网友评论

        本文标题:Markdown 语法介绍

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