Pre process inline

This commit is contained in:
M66B 2020-02-06 14:24:15 +01:00
parent 1be14d521f
commit 87aae49496
1 changed files with 7 additions and 3 deletions

View File

@ -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");
}