fix: mermaid chart rendering (again)

This commit is contained in:
hmol233 2021-09-12 20:39:48 +08:00
parent fb0deffb7e
commit d98294791b
No known key found for this signature in database
GPG key ID: D617A9DAB0C992D5
2 changed files with 5 additions and 8 deletions

View file

@ -25,7 +25,6 @@ export default defineComponent({
const html = reactive({ innerHtml: "" }); const html = reactive({ innerHtml: "" });
onMounted(() => { onMounted(() => {
nextTick(async function () { nextTick(async function () {
console.log(chartID, rawGraph);
const mermaid = await import("mermaid"); const mermaid = await import("mermaid");
mermaid.default.initialize({ mermaid.default.initialize({
startOnLoad: false, startOnLoad: false,
@ -33,7 +32,7 @@ export default defineComponent({
}); });
mermaid.default.render( mermaid.default.render(
chartID.value, chartID.value,
rawGraph.value, decodeURI(rawGraph.value),
(svgCode, bindFunc) => { (svgCode, bindFunc) => {
html.innerHtml = svgCode; html.innerHtml = svgCode;
} }
@ -49,7 +48,7 @@ export default defineComponent({
}); });
mermaid.default.render( mermaid.default.render(
chartID.value, chartID.value,
rawGraph.value, decodeURI(rawGraph.value),
(svgCode, bindFunc) => { (svgCode, bindFunc) => {
html.innerHtml = svgCode; html.innerHtml = svgCode;
} }

View file

@ -12,11 +12,9 @@ const MermaidPlugin: PluginSimple = function (md) {
const token = tokens[idx]; const token = tokens[idx];
const key = `mermaid_${hash(idx)}`; const key = `mermaid_${hash(idx)}`;
let { content } = token; let { content } = token;
content = content.replaceAll(";\n", ";"); return `<Mermaid identifier="${key}" graph="${encodeURI(
content = content.replaceAll("\n\n", ";"); content
content = content.replaceAll("\n", ";"); )}"></Mermaid>`;
content = content.replaceAll('"', "'");
return `<Mermaid identifier="${key}" graph="${content}"></Mermaid>`;
} }
const rawCode = fence(...args); const rawCode = fence(...args);
return `${rawCode}`; return `${rawCode}`;