[backend/libmfm] Correctly handle incoming italic html markup
This commit is contained in:
parent
78e47c3236
commit
8c5358efd9
1 changed files with 1 additions and 1 deletions
|
@ -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":
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue