美文网首页
Day1-Markdown学习

Day1-Markdown学习

作者: Oot_zhl | 来源:发表于2018-11-05 20:04 被阅读0次

    一:标题练习

    #h1
    ##h2
    ###h3
    ####h4
    #####h5
    ######h6
    

    演示

    h1

    h2

    h3

    h4

    h5
    h6

    二:分级标题

    一级标题
    =========
    二级标题
    ---------------
    

    演示:

    一级标题

    二级标题

    三:引用

    > hello world!
    

    演示

    hello world

    多层嵌套
    >aaaaaaa
    >>bbbbbbbbbb
    >>>cccccccccccc
    

    演示

    aaaaaa

    bbbbbbb

    cccccccc

    四:行内标记

    标记`hello zhl`标记
    

    演示

    标记hello zhl标记

    五:插入图片

    演示

    123.jpg

    六:序表

    有序

    1. one
    2. two
    3. three
    

    演示

    1. one
    2. two
    3. three

    无序

    * one
    * two
    * three
    

    演示

    • one
    • two
    • three

    七:表格

    代码1

    |    a    |       b       |      c     |
    |:-------:|:------------- | ----------:|
    |   居中  |     左对齐    |   右对齐   |
    |=========|===============|============|
    
    a b c
    居中 左对齐 右对齐

    八:格式化文本

    保持输入排版格式不变

    代码:

    <pre>
    hello world 
             hi
      hello world 
    </pre>
    

    <pre>
    hello world
    hi
    hello world
    </pre>

    相关文章

      网友评论

          本文标题:Day1-Markdown学习

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