mirror of https://github.com/M66B/FairEmail.git
Pre process inline
This commit is contained in:
parent
1be14d521f
commit
87aae49496
|
@ -637,17 +637,21 @@ public class HtmlHelper {
|
|||
}, document);
|
||||
}
|
||||
|
||||
for (Element div : document.select("div")) {
|
||||
boolean inline = Boolean.parseBoolean(div.attr("inline"));
|
||||
if (inline)
|
||||
div.tagName("span");
|
||||
}
|
||||
|
||||
// Selective new lines
|
||||
for (Element div : document.select("div")) {
|
||||
Node prev = div.previousSibling();
|
||||
if (prev instanceof Element && !((Element) prev).isBlock())
|
||||
div.prependElement("br");
|
||||
|
||||
boolean inline = Boolean.parseBoolean(div.attr("inline"));
|
||||
int childs = div.childNodeSize();
|
||||
Node last = (childs > 0 ? div.childNode(childs - 1) : null);
|
||||
if (!inline &&
|
||||
(last == null || !"div".equals(last.nodeName())) &&
|
||||
if ((last == null || !"div".equals(last.nodeName())) &&
|
||||
hasVisibleContent(div.childNodes())) {
|
||||
div.appendElement("br");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue