美文网首页
markdown学习

markdown学习

作者: 白杨4546 | 来源:发表于2016-12-19 17:05 被阅读8次
    1. 标题用#,不同数量的#,便是不同等级
    2. 列表的表示可以分为有序和无序
      有序列表的表示方法:1.+空格
      无序列表的表示方法:+ - *+空格
    3. 引用 >(大于号),例如

    这里是引用

    • 插入图片,可以直接把图片拖进来


      f96c892fc63933ab186235f7c910753b10f77_mw_800_wm_1_wmp_3.jpg

    也可以采用img标签

    三少爷的剑
    • 粗体与斜体
      两个包围的就是粗体 一个包围的是斜体
    • 表格
    dog bird cat
    foo foo foo
    bar bar bar
    baz baz baz
    • 代码 键盘左上角ESC键
      行内代码(一组)
    • printf("Hello World")
      行间代码(三组)
    1 class Cat { 
        2 int color, weight, height; 
    3 
     4 public Cat(int color, int weight, int height) { 
    5 this.color = color;
     6 this.weight = weight;
     7 this.height = height; 
    8  }
    

    • 原来还可以这样

    段首加空格,使用shift+空格切换到全角输入,收到输入两个空格即可

    相关文章

      网友评论

          本文标题:markdown学习

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