mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-05 00:23:09 +02:00
Cleanup
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user