[backend/masto-client] Fix blockquote handling for some clients

This commit is contained in:
Laura Hausmann 2024-09-13 02:39:18 +02:00
parent 1a43ce55cd
commit 01b2702af5
No known key found for this signature in database
GPG key ID: D044E84C5BE01605

View file

@ -258,6 +258,7 @@ public class MfmConverter(IOptions<Config.InstanceSection> config)
var el = CreateInlineFormattingElement(document, "blockquote");
AddHtmlMarkupStartOnly(node, "> ");
AppendChildren(el, document, node, mentions, host);
el.AppendChild(document.CreateElement("br"));
return el;
}
case MfmTextNode textNode: