定义的对象如下:
var markdownvalue;
$(function() {
contentEditor = editormd({
id :'md-content', //外层div的id
width : '100%', //区域尺寸:宽
height : 640, //区域尺寸:高
syncScrolling : 'true', // 是否单滚动 true | false | "single", default true
path : '/editormd/lib/', //edit.md插件目录lib的路径
autoFocus : false, //打开网页不自动聚焦到编辑器位置
emoji : true, //开启表情输入功能
saveHTMLToTextarea : true, 这个配置,方便post提交表单
tocm: true, // Using [TOCM]
tex: true,// 开启科学公式TeX语言支持,默认关闭
flowChart: true,//开启流程图支持,默认关闭
/**上传图片相关配置如下*/
imageUpload : true,
imageFormats : ["jpg", "jpeg", "gif", "png"],//webp|jpg|jpeg|gif|bmp|png
imageUploadURL : "/imgUpload",//注意你后端的上传图片服务地址
});
});
清空操作
contentEditor.cm.setValue("");