[backend/libmfm] Correctly handle incoming italic html markup

This commit is contained in:
Laura Hausmann 2024-04-28 20:08:26 +02:00
parent 78e47c3236
commit 8c5358efd9
No known key found for this signature in database
GPG key ID: D044E84C5BE01605

View file

@ -60,7 +60,7 @@ internal class HtmlParser(IEnumerable<Note.MentionedUser> mentions)
case "I": case "I":
case "EM": case "EM":
{ {
return $"<i>{ParseChildren(node)}</i>"; return $"*{ParseChildren(node)}*";
} }
case "PRE": case "PRE":
{ {