Markdown 语法笔记

作者: 李国安 | 来源:发表于2016-08-17 11:10 被阅读89次

    笔记规范


    下面代码块中,表示 Markdown 语法

    代码块中的文字, 都是 Markdown 的语法
    
    例如:
     `行内代码`
    

    代码块下方, 则是 Markdown 效果
    行内代码

    标题&段落


    # Level 1
    

    Level 1


    Level 1
    ====
    

    Level 1


    ## Level 2
    

    Level 2


    Level 2
    ----
    

    Level 2


    ### Level 3
    

    Level 3


    #### Level 4
    

    Level 4


    ##### Level 5
    
    Level 5

    ###### Level 6
    
    Level 6

    强调&着重


    *Hello World*
    

    Hello World


    _Hello World_
    

    Hello World


    **Hello World**
    

    Hello World


    __Hello World__
    

    Hello World


    行内代码块

    `Command + R`
    

    Command + R


    多行代码块

      ```(删除圆括号中的内容)
      Command + C
      Command + V
      Command + R
      ```(删除圆括号中的内容)
    
      Command + C
      Command + V
      Command + R
    

    表格

    TableHeader 1 | TableHeader 2
    ---- | ----
    Content 1 | Content 2
    Column 1  Row 2 | Column 2  Row 2
    
    TableHeader 1 TableHeader 2
    Content 1 Content 2
    Column 1 Row 2 Column 2 Row 2

    列表


    有序列表

    书写规范:
    1. 上午
      1. 洗漱
      2. 吃饭
      3. 上班
    2. 中午
      1. 吃饭
      1. 休息
      1. 上班
    3. 下午
      8. 上班
      1. 下班
      4. 回家
    
    1. 上午
    2. 洗漱
    3. 吃饭
    4. 上班
    5. 中午
    6. 吃饭
    7. 休息
    8. 上班
    9. 下午
    10. 上班
    11. 下班
    12. 回家

    无序列表

    书写格式1:
    * 红色
    * 绿色
      * 浅绿色
      * 深绿色
    * 黄色
    
    书写格式2:
    + One
    + Two
    + Three
    
    书写格式3:
    - One
    - Two
    - Three
    
    • 红色
    • 绿色
      • 浅绿色
      • 深绿色
    • 黄色

    <h2 href="Lianjie">链接</h2>

    普通链接: <http://www.google.com>
    Email: <limenglong0226@gmail.com>
    [My Home Page](http://www.jianshu.com/users/341ab20c16a3/timeline)
    

    普通链接: http://www.google.com
    Email: limenglong0226@gmail.com
    查看更多文章


    引用

    普通引用

    >  We Are The Future
    >  Candy
    

    We Are The Future
    Candy


    嵌套引用

    >  引用
    >> 嵌套引用
    

    引用

    嵌套引用


    引用中使用 Markdown 语法

    > ### 三级标题
    > - - -
    > 1. 有序列表1
    > 2. 有序列表2
    > - - -
    

    三级标题


    1. 有序列表1
    2. 有序列表2


    删除线

    ~~Delete Line~~
    

    Delete Line


    分割线

    分割线有三种方式

    ***
    *****
    - - -
    



    图片

    ![足球小将-大空翼](https://img.haomeiwen.com/i2452150/8fdd38d40bcd1695.jpg)
    
    足球小将-大空翼足球小将-大空翼

    脚注

    Footnote 1: [^sample_1]
    [^sample_1]: 这个脚注的名字叫做 sample_1
    
    Footnote 2: [^sample_2]
    [^sample_2]: 这个脚注的名字叫做 sample_2
    

    Footnote 1: [1]
    Footnote 2: [2]


    TOC

    [TOC]
    注释: 目录, 但是在简书中不好使??? -.-!!!
    

    参考


    Lemon龙说:

    如果您在文章中看到了错误 或 误导大家的地方, 请您帮我指出, 我会尽快更改

    如果您有什么疑问或者不懂的地方, 请留言给我, 我会尽快回复您

    如果您觉得本文对您有所帮助, 您的喜欢是对我最大的鼓励

    如果您有好的文章, 可以投稿给我, 让更多的 iOS Developer 在简书这个平台能够更快速的成长


    1. sample_footnote_1 是可以修改的, 只要对应上就 OK 了

    2. 这个脚注的名字叫做 Footnote_2

    相关文章

      网友评论

        本文标题:Markdown 语法笔记

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