avoid passing whitespace to markmap or mathjax

pull/1/head
ansuz 2020-07-08 13:37:21 -04:00
parent 3779e63a34
commit 6a1844cac7
1 changed files with 1 additions and 0 deletions

View File

@ -191,6 +191,7 @@ define([
var defaultCode = renderer.code;
renderer.code = function (code, language) {
if (!code || typeof(code) !== 'string' || !code.trim()) { return defaultCode.apply(renderer, arguments); }
if (language === 'mermaid' && code.match(/^(graph|pie|gantt|sequenceDiagram|classDiagram|gitGraph)/)) {
return '<pre class="mermaid" data-plugin="mermaid">'+Util.fixHTML(code)+'</pre>';
} else if (language === 'markmap') {