This commit is contained in:
M66B 2020-02-24 20:34:16 +01:00
parent b36e98a457
commit 3247d20c14
1 changed files with 2 additions and 5 deletions

View File

@ -508,11 +508,7 @@ public class HtmlHelper {
}
}
// Remove new lines without surrounding content
//for (Element br : document.select("br"))
// if (br.parent() != null && !hasVisibleContent(br.parent().childNodes()))
// br.tagName("span");
// Remove trailing br from div
for (Element div : document.select("div"))
if (div.children().select("div").size() == 0 &&
hasVisibleContent(div.childNodes())) {
@ -521,6 +517,7 @@ public class HtmlHelper {
last.remove();
}
// Replace headings
if (!text_size)
for (Element h : document.select("h1,h2,h3,h4,h5,h6")) {
h.appendElement("br");