美文网首页
Markdown简单语法学习

Markdown简单语法学习

作者: 翻滚的前端程序员 | 来源:发表于2017-04-10 18:14 被阅读9次

    Markdown 是一种轻量级的「标记语言」

    windows编辑工具推荐 markdownpad

    osx 编辑工具推荐 Mou

    一级标题 # 一级标题

    二级标题 ## 二级标题

    无序列表

    • 1 * 1
    • 2 * 2
    • 3 * 3
    • 4 * 4

    有序列表

    1. 1 1. 1
    2. 2 2. 2
    3. 3 3. 3
    4. 4 4. 4

    引用

    这里是引用 > 这里是引用

    图片与链接

    Arron Blog [Arron Blog](http://www.jsfunny.com)

    Blog icon

    ![Blog icon](https://img.haomeiwen.com/i2189803/e244baddf18e2253.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

    粗体与斜体

    这里是粗体 **这里是粗体**

    这里是斜体 *这里是斜体*

    表格

    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 |
    

    小段代码框 使用 ```

    console.log('hello world');

    大片代码 :使用Tab和四个空格

    console.log('hello world');
    

    分割线

    *** 三个*

    相关文章

      网友评论

          本文标题:Markdown简单语法学习

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