mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 05:55:00 +08:00
less escaping for backticks
This commit is contained in:
parent
686045b46a
commit
78fbea307c
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user