1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-24 15:11:03 +00:00

New line for empty paragraphs

This commit is contained in:
M66B 2023-02-23 20:57:25 +01:00
parent 030f6dc5b1
commit e404da4f60

View file

@ -1121,6 +1121,10 @@ public class HtmlHelper {
continue;
}
p.attr("x-paragraph", "true");
if (TextUtils.isEmpty(p.text())) {
p.removeAttr("x-line-before");
p.removeAttr("x-line-after");
}
}
}