less escaping for backticks

This commit is contained in:
Bruno Windels 2019-05-31 11:06:15 +02:00
parent 686045b46a
commit 78fbea307c

View file

@ -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) {