mirror of https://github.com/vector-im/riot-web
Merge pull request #3030 from aaronraimist/preserve-strikethrough
Message editing: preserve strikethrough as wellpull/21833/head
commit
c30908c380
|
@ -110,6 +110,9 @@ function parseHtmlMessage(html, room) {
|
|||
case "CODE":
|
||||
parts.push(new PlainPart(`\`${n.textContent}\``));
|
||||
break;
|
||||
case "DEL":
|
||||
parts.push(new PlainPart(`<del>${n.textContent}</del>`));
|
||||
break;
|
||||
default:
|
||||
parts.push(new PlainPart(n.textContent));
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue