fix: <font> tag 'style' is lost in replies

This commit is contained in:
Sergey Mosin 2023-08-10 00:07:31 -04:00
parent d5965bf1d7
commit 1b7e144a6e

View file

@ -1345,6 +1345,7 @@ const
color = node.color,
newTag = createElement('SPAN'),
css = newTag.style;
newTag.style.cssText = node.style.cssText;
if (face) {
css.fontFamily = face;
}