当前位置:首页 / static / editor.md@1.5.0 /

文件名 修改时间 大小 操作
.. - -
css css 2015-06-09 09:48 -
docs docs 2015-06-09 09:48 -
examples examples 2015-06-09 09:48 -
fonts fonts 2015-06-09 09:48 -
images images 2015-06-09 09:48 -
languages languages 2015-06-09 09:48 -
lib lib 2015-06-09 09:48 -
plugins plugins 2015-06-09 09:48 -
scss scss 2015-06-09 09:48 -
src src 2015-06-09 09:48 -
tests tests 2015-06-09 09:48 -
BUGS.md BUGS.md 2015-06-09 09:48 521 B
CHANGE.md CHANGE.md 2015-06-09 09:48 26.3 KB
Gulpfile.js Gulpfile.js 2015-06-09 09:48 12.74 KB
LICENSE LICENSE 2015-06-09 09:48 1.05 KB
README.md README.md 2015-06-09 09:48 5.9 KB
bower.json bower.json 2015-06-09 09:48 425 B
editormd.amd.js editormd.amd.js 2015-06-09 09:48 162.41 KB
editormd.amd.min.js editormd.amd.min.js 2015-06-09 09:48 54.11 KB
editormd.js editormd.js 2015-06-09 09:48 159.4 KB
editormd.min.js editormd.min.js 2015-06-09 09:48 52.8 KB
package.json package.json 2015-06-09 09:48 981 B
README.md

Editor.md

Editor.md : The open source embeddable online markdown editor (component), based on CodeMirror & jQuery & Marked.

Features

README & Examples (English)


Editor.md 是一款开源的、可嵌入的 Markdown 在线编辑器(组件),基于 CodeMirror、jQuery 和 Marked 构建。

editormd-screenshot

主要特性

Examples

https://pandao.github.io/editor.md/examples/index.html

Download & install

Github download

Bower install :

bower install editor.md

Usages

HTML:

<link rel="stylesheet" href="editormd.min.css" />
<div id="editormd">
    <textarea style="display:none;">### Hello Editor.md !</textarea>
</div>

Tip: Editor.md can auto append <textarea> tag;

javascript:

<script src="jquery.min.js"></script>
<script src="editormd.min.js"></script>
<script type="text/javascript">
    $(function() {
        var editor = editormd("editormd", {
            path : "../lib/" // Autoload modules mode, codemirror, marked... dependents libs path
        });

        /*
        // or
        var editor = editormd({
            id   : "editormd",
            path : "../lib/"
        });
        */
    });
</script>

Using modular script loader :

Dependents

Changes

Change logs

License

The MIT License.

Copyright (c) 2015 Pandao