diff --git a/src/editor/deserialize.js b/src/editor/deserialize.js index c3f7096497..64b219c2a9 100644 --- a/src/editor/deserialize.js +++ b/src/editor/deserialize.js @@ -47,7 +47,7 @@ function parseLink(a, room) { function parseCodeBlock(n) { const parts = []; - const preLines = `\`\`\`\n${n.textContent}\`\`\``.split("\n"); + const preLines = ("```\n" + n.textContent + "```").split("\n"); preLines.forEach((l, i) => { parts.push(new PlainPart(l)); if (i < preLines.length - 1) {