官网地址: https://pandao.github.io/editor.md/index.html
Gitee 地址:https://gitee.com/pandao/editor.md
<div id="md-content" style="z-index: 1;">
div>
var testEditor;
$(function() {
testEditor = editormd("md-content", {
width: "90%", //编辑器宽度
height: 740, //编辑器高度
path : '../lib/', //这里要指定下载好的文件中lib的路径
//---设置以上三个即可使用---
theme : "dark",
previewTheme : "dark",
editorTheme : "pastel-on-dark",
codeFold : true,
//syncScrolling : false,
saveHTMLToTextarea : true, // 保存 HTML 到 Textarea
searchReplace : true,
//watch : false, // 关闭实时预览
htmlDecode : "style,script,iframe|on*", // 开启 HTML 标签解析,为了安全性,默认不开启
//toolbar : false, //关闭工具栏
//previewCodeHighlight : false, // 关闭预览 HTML 的代码块高亮,默认开启
emoji : true,
taskList : true,
tocm : true, // Using [TOCM]
tex : true, // 开启科学公式TeX语言支持,默认关闭
flowChart : true, // 开启流程图支持,默认关闭
sequenceDiagram : true, // 开启时序/序列图支持,默认关闭,
//dialogLockScreen : false, // 设置弹出层对话框不锁屏,全局通用,默认为true
//dialogShowMask : false, // 设置弹出层对话框显示透明遮罩层,全局通用,默认为true
//dialogDraggable : false, // 设置弹出层对话框不可拖动,全局通用,默认为true
//dialogMaskOpacity : 0.4, // 设置透明遮罩层的透明度,全局通用,默认值为0.1
//dialogMaskBgColor : "#000", // 设置透明遮罩层的背景颜色,全局通用,默认为#fff
imageUpload : true,
imageFormats : ["jpg", "jpeg", "gif", "png", "bmp", "webp"],
imageUploadURL : "./php/upload.php",
onload : function() {
console.log('onload', this);
//this.fullscreen();
//this.unwatch();
//this.watch().fullscreen();
//this.setMarkdown("#PHP");
//this.width("100%");
//this.height(480);
//this.resize("100%", 640);
}
});
});
testEditor.gotoLine(90);
testEditor.show();
testEditor.hide();
testEditor.getMarkdown();
testEditor.getHTML();
testEditor.watch();
testEditor.unwatch();
testEditor.previewing();
testEditor.fullscreen();
testEditor.showToolbar();
testEditor.hideToolbar();
testEditor.config({
tocDropdown : true,
tocTitle : "目录 Table of Contents",
});
testEditor.config("tocDropdown", false);
[TOCM]
[TOC]