美文网首页Android
markdown语法学习

markdown语法学习

作者: 小乌龟爸 | 来源:发表于2018-09-13 16:37 被阅读3次

    # Markdown Editor

    Yet another Chrome Markdown Editor.

    ## Features

    * Save your data at real time

    * Drag and drop a file to load it

    * Ctrl/Cmd + S to save the source file

    * Support Github Flavored Markdown syntax

    * Support many languages highlight in editor and preview mode

    ## Syntax Highlight

        ``` javascript

    function myFunc(theObject) {

      theObject = {make: "Ford", model: "Focus", year: 2006};

    }

    var mycar = {make: "Honda", model: "Accord", year: 1998},

        x,

        y;

    x = mycar.make;    // x gets the value "Honda"

    myFunc(mycar);

    y = mycar.make;    // y still gets the value "Honda"

        ```

    ## Feedback

    https://github.com/chenzhiwei/chrome-markdown-editor

    相关文章

      网友评论

        本文标题:markdown语法学习

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