美文网首页
MarkDown基本用法

MarkDown基本用法

作者: 边河 | 来源:发表于2018-07-31 11:58 被阅读18次

    MarkDown基本用法
    这些是从文档总结的部分内容,仅供自己遗忘时翻阅。

    1.添加图片

    MacDown logo

    格式:![文件名](链接地址)
    2.加粗字体

    MARKDOWN

    格式:**文字**

    3.文字链接

    here

    格式:[文字](链接)
    4.字号

    字号 (格式:#文字)

    字号(格式:##文字,下方会出现一条线)

    字号 (###文字)

    字号 (####文字)

    字号 (#####字号)
    字号 (######文字)

    #######字号 (#######文字)

    说明:字号最多用6位#,就不再有用
    5.段落

    前方有点的段落
    
    * 我的前面有个点
    
    格式:* 空格 文字
    
    
    

    6.这时候你会发现上面有一个方框把这个框住了,这个方框是```

    7.还有一个方法就是点很多空格发现字的颜色变虚了,也可以有框

    Header1
    =======
    header2
    -----------
    

    8.如果是单行的直接用`文字`
    是save

    9.还有一个段落格式是前面有一条长长的线

    第一段

    第二段

    第三小段
    第四小段

    第五段

    • 也可以搭配点
    >第一段
    >
    >第二段
    >
    >>第三小段
    >>第四小段
    >
    >第五段
    > 
    > *  也可以搭配点
    

    10.表格

    和html写表格一样

    第一个头 第二个头
    第一个头的第一个单元 第二个头的第一个单元
    第一个头的第二个单元 第二个头的第二个单元
    第一个头|第二个头
    -------|------
    第一个头的第一个单元|第二个头的第一个单元
    第一个头的第二个单元|第二个头的第二个单元
    

    同样的可以设置居左居中居右等格式

    居左 居中 居右
    下面文字居左了 下面文字居中了 下面文字居右了
    是不是 是不是 是不是
    居左|居中|居右
    :---|:---:|---:
    下面文字居左了|下面文字居中了|下面文字居右了
    是不是|是不是|是不是
    

    还有一些直接搬来了

    Option name Markup Result if enabled
    Intra-word emphasis So A*maz*ing So A<em>maz</em>ing
    Strikethrough ~~Much wow~~ <del>Much wow</del>
    Underline [^under] _So doge_ <u>So doge</u>
    Quote [^quote] "Such editor" <q>Such editor</q>
    Highlight ==So good== <mark>So good</mark>
    Superscript hoge^(fuga) hogefuga
    Autolink http://t.co http://t.co
    Footnotes [^4] and [^4]: [1] and footnote 4

    这些一般用不到,也就没有挨个试

    11.添加音乐
    <div align=center><iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=330 height=86 src="http:xxx.mp3?type=2&id=30375691&auto=1&height=66"></iframe></div>

    <iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=430 height=86 src="http:xxx.mp3?type=2&id=114389&auto=1&height=66"></iframe>

    markdown可以添加,简书不支持。可能因为版权原因,没办法添加背景音乐。


    1. You don't have to use a number. Arbitrary things like [^footy note4] and [^footy note4]: will also work. But they will render as numbered footnotes. Also, no need to keep your footnotes in order, I will sort out the order for you so they appear in the same order they were referenced in the text body. You can even keep some footnotes near where you referenced them, and collect others at the bottom of the file in the traditional place for footnotes.

    相关文章

      网友评论

          本文标题:MarkDown基本用法

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