mirror of https://github.com/M66B/FairEmail.git
Append br to div with one text node
This commit is contained in:
parent
4c57d7f744
commit
93ca78abab
|
@ -366,8 +366,9 @@ public class HtmlHelper {
|
|||
// Prevent too many line breaks
|
||||
for (Element div : document.select("div")) {
|
||||
div.tagName("span");
|
||||
if (div.parent() != null)
|
||||
div.after(document.createElement("br"));
|
||||
if (div.childNodeSize() == 1 && div.childNode(0) instanceof TextNode)
|
||||
div.appendElement("br");
|
||||
div.appendElement("br");
|
||||
}
|
||||
|
||||
Element body = document.body();
|
||||
|
|
Loading…
Reference in New Issue