Merge pull request #3030 from aaronraimist/preserve-strikethrough

Message editing: preserve strikethrough as well
pull/21833/head
Travis Ralston 2019-05-24 13:05:14 -06:00 committed by GitHub
commit c30908c380
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -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;