md语法

2017-05-11  本文已影响4965人  lotuslwb

md语法

md语法直接兼容html标签 可以直接用html语法吧,啦啦啦~

下面列举了一些常用的方法

  1. 链接
     [淘宝网](http://www.taobao.com/)
    
  2. 图片
     ![图片标题](http://shuju.taobao.ali.com/images/web/tsj_main_dirc_img.png)
    
  3. 标题
     # 一级标题
     ## 二级标题
     ### 三级标题
     #### 四级标题
     ##### 五级标题
     ###### 六级标题
    
tips:几个 # 就是几级标题,最小到六级
  1. 斜体
     *这是斜体*
     *[这是斜体链接](http://www.taobao.com)*
     *斜体,[这是斜体链接](http://www.taobao.com)*
    

tips:斜体和链接可以混用

  1. 为字体加颜色
     这是<label style="color:red">红色</label>字体
     这是<label style="color:green">绿色</label>字体
     这是<label style="color:yellow">黄色</label>字体
     这是<label style="color:blue">蓝色</label>字体
    

<label style="color:red">tips:修改color为对应的颜色英文字母即可,复杂的颜色不要想了,况且大家也用不到</label>

  1. 为自体加粗
     **加粗**字体
    
  2. Email
     Email:<yabing.zyb@alibaba-inc.com>
    
  3. 无序排列
     * list1
     * list2
     * list3
    
  4. 有序排列
     1. list1
     2. list2
     3. list3
    
  5. 分割线
    ***
    ---
    - - - -
    

tips: 三种都一样

  1. 内容框
    在上一行内容缩进的基础上再缩进四个空格
    
  2. 换行
    需要换行<br>这是换行后的下一行
    
  3. 中划线
    ~~中划线~~
    
  4. 添加脚注
    这是脚注[^1]
    [^1]: 这是脚注说明,会在文章的末尾显示.
    
  5. 表格
    默认表格:
    First Header | Second Header | Third Header
    ------------ | ------------- | ------------
    Content Cell | Content Cell  | Content Cell
    Content Cell | Content Cell  | Content Cell
    
    左右浮动表格:
    First Header | Second Header | Third Header
    :----------- | :-----------: | -----------:
    Left         | Center        | Right
    Left         | Center        | Right
    

tips:默认向左对齐

  1. 内容块
    > 这里的内容在内容块中
    
  2. 例子效果:
    1. 淘宝网
    2. 图片标题图片标题
    3. 一级标题

    二级标题

    三级标题

    四级标题

    五级标题
    六级标题
    1. 这是斜体

      这是斜体链接

      斜体,这是斜体链接
    2. 这是<label style="color:red">红色</label>字体

      这是<label style="color:green">绿色</label>字体

      这是<label style="color:yellow">黄色</label>字体

      这是<label style="color:blue">蓝色</label>字体
    3. 加粗字体
    4. Email:yabing.zyb@alibaba-inc.com
      • list1
        1. demo1
        2. demo2
        3. demo3
      • list2
        • demo1
        • demo2
        • demo3
      • list3
      1. list1
      2. list2
      3. list3



    5. 需要换行
      这是换行后的下一行
    6. 中划线
    7. 这是脚注[1]
    8. 默认表格:
    First Header Second Header Third Header
    Content Cell Content Cell Content Cell
    Content Cell Content Cell Content Cell

    左右浮动表格:

    First Header Second Header Third Header
    Left Center Right
    Left Center Right

    这里的内容在内容块中


  1. 这是脚注说明,会在文章的末尾显示.

上一篇下一篇

猜你喜欢

热点阅读