GitHub - kidzhy/editor.md: The open source embeddable online markdown editor (component).
Editor.md : The open source embeddable online markdown editor (component), based on CodeMirror & jQuery & Marked.
<link rel="stylesheet" href="editormd.min.css" /> <div id="editormd"> <textarea style="display:none;">### Hello Editor.md !</textarea> </div>
<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>
The MIT License.