Markdown

作者: Devinh | 来源:发表于2015-06-16 15:33 被阅读75次

    引用

    说明:
    使用 > 表示引用, >> 表示引用里面再套一层引用,依次类推。

    这是一级引用

    这是二级引用

    这是三级引用
    这是一级引用


    注意事项:

    如果 > 和 >> 嵌套使用的话,从>> 退到 > 时,必须之间要加一个空格或者 > 作为过渡,否则默认为下一行和上一行是同一级别的引用。如示例所示。


    标签

    • Create, view and edit plain text and Markdown or MultiMarkdown notes

    • Organise all your notes in folders and sub-folders

    • Full text search of all your documents

    • Fullscreen editing for distraction free writing

    • Smart editing with a dedicated Markdown shortcuts toolbar and lists continuation

    • Five different color themes

    • Share your documents with other applications

    • Share the Markdown generated HTML preview of your notes

    • Receive text from other applications

    • Store your notes in the cloud with Dropbox

    • Draft can create notes with the following extensions:

      • txt
      • md
    • Draft can import (from Dropbox and other apps) files with the following extensions:

      • txt
      • md
      • markdown
      • mdown
      • org

    数学公式

    Latex公式测试行内公式

    $ delta = �eta / (alpha + 1)$
    行间公式
    $$rac{O}{I} approx rac{A}{1+AF}$$
    上下标
    $$ U_o = A^2 * ( U_+ - U_- ) $$
    积分
    $$ int_1 ^2 sin x dx $$
    方程组
    $$
    �egin{aligned}
    dot{x} & = sigma(y-x) \ndot{y} & =
    ho x - y - xz \ndot{z} & = -�eta z + xy
    end{aligned}
    $$

    代码

    高亮代码

    使用```表示代码块。

    示例1

    
    var canvas = document.getElementById("canvas");
    
    var context = canvas.getContext("2d");
    
    

    行内代码

    使用`表示行内代码。

    例子

    行内代码

    导入图片

    使用" Alt textAlt text

    "导入图片。其中:

    Alt text 为如果图片无法显示时显示的文字;

    /path/to/img.jpg 为图片所在路径;

    Optional title 为显示标题。显示效果为在你将鼠标放到图片上后,会显示一个小框提示,提示的内容就是 Optional title 里的内容。

    例子:

    MarkdownMarkdown

    字体

    使用 **或者__表示粗体。

    使用* 或者_表示斜体。

    示例

    粗体1 粗体2

    斜体1 斜体2_

    表格

    具体使用方式请看示例。

    ------: 为右对齐。
    :------ 为左对齐。
    :------: 为居中对齐。
    ------- 为使用默认居中对齐。
    例子
    (补充)

    链接

    行内链接

    这就是我们常用的地址:[Baidu](www.baidu.com "百度一下,你就知道" )
    这就是我们常用的地址:Baidu

    参考式链接

    这就是我们常用的地址:Baidu

    相关文章

      网友评论

          本文标题:Markdown

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