美文网首页
markdown 语法大全

markdown 语法大全

作者: 盖码范 | 来源:发表于2019-06-22 12:11 被阅读0次

    1.标题

    副标题

    小标题

    2.字体

    斜体字
    黑体字
    斜体加黑体


    3.折叠

    折叠长句

    <details><summary> Boostnote是对应markdown记法的记事本,信息排序・共享的一种工具。</summary>

    • Features -

      · Search function to find memos in one shot
      · Supports markdown notation

      · Support for Mac, Windows, Linux, iOS, Android

      · Export and import to Plain text (.txt), Markdown (.md) format

      · Supports PDF saving

      · Can be used offline

      · Synchronize to dropbox etc. with setting

      · Supports theme colors and numerous fonts

      </details>

    4.名单

    • 名单1
    • 名单2
    • 名单3

    5.链接

    左侧写文字,右侧放入链接。
    百度地址

    6.复选框

    • [x] 任务 1
    • [ ] 任务 2

    7.引文

    引文
    引文引文
    引文引文引文引文

    8.水平线






    9.嵌入图像

    把图片的标题写在左侧,右侧写下已保存的地方。

    嵌入图像

    10.填写代码

    Render: function () {
    Return (
    <Div className = "commentBox">
    <H1> Comments </ h1>
    <CommentList data = {this.state.data} />
    <CommentForm onCommentSubmit = {this.handleCommentSubmit} />
    </ Div>
    );
    }
    
    import re
    print(re.path)
    

    11.表格符号

    水果 价钱
    苹果 1$
    葡萄 4$
    橙子 2$
    柠檬 1$
    桃子 3$
    20$

    12.Latex

    可以写数值公式。
    \mathrm{e}^{\mathrm{i}\theta} = \cos(\theta) + \mathrm{i}\sin(\theta)

    13.Flowchart(流程图)

    st=>start: Start:>http://www.google.com[blank]
    e=>end:>http://www.google.com
    op1=>operation: My Operation
    sub1=>subroutine: My Subroutine
    cond=>condition: Yes or No?:>http://www.google.com
    io=>inputoutput: catch something...
     
    st->op1->cond
    cond(yes)->io->e
    cond(no)->sub1(right)->op1
    

    14.Sequence(序列)

    Title: Here is a title
    A-> B: Normal line
    B -> C: Dashed line
    C - >> D: Open arrow
    D - >> A: Dashed open arrow
    

    相关文章

      网友评论

          本文标题:markdown 语法大全

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