You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
simplemde-markdown-editor/src/js/index.js

14 lines
295 B
JavaScript

/**
* Created by WittBulter on 2017/1/17.
*/
import SimpleMDE from './simplemde'
(function(){
if (typeof module === "object") return module.exports = SimpleMDE;
if (typeof define === "function" && define.amd ) define('SimpleMDE',[], () => SimpleMDE);
window.SimpleMDE = SimpleMDE;
})()