function reset () {
let r = window.editormd.$marked.Renderer;
let s = window.editormd.$marked.setOptions;
window.editormd.$marked = function (src, opt, callback) { return "what ever you want" };
window.editormd.$marked.Renderer = r;
window.editormd.$marked.setOptions = s;
}
3条答案
按热度按时间h79rfbju1#
@jiangyijie27 Editor.md 基于 marked 做了语法扩展,所以不能直接切换成其他解析库。
pieyvz9o2#
我发现好像没法关掉 marked, 但是你可以直接等 marked 加载完覆写
window.marked
函数ztmd8pv53#
或者把这个写进 onload 事件