mirror of https://github.com/M66B/FairEmail.git
Revert "Made div with br a special case"
This reverts commit 61408dfd02
.
This commit is contained in:
parent
61408dfd02
commit
864b9ebcea
|
@ -293,14 +293,12 @@ public class HtmlHelper {
|
||||||
}
|
}
|
||||||
}, document);
|
}, document);
|
||||||
|
|
||||||
// Prevent too many line breaks
|
|
||||||
for (Element div : document.select("div"))
|
|
||||||
if (div.children().size() == div.select("br").size())
|
|
||||||
div.tagName("span");
|
|
||||||
|
|
||||||
// Remove block elements displaying nothing
|
// Remove block elements displaying nothing
|
||||||
for (Element e : document.select("*"))
|
for (Element e : document.select("*"))
|
||||||
if (e.isBlock() && !e.hasText() && e.select("img").size() == 0)
|
if (e.isBlock() &&
|
||||||
|
!e.hasText() &&
|
||||||
|
e.select("br").size() == 0 &&
|
||||||
|
e.select("img").size() == 0)
|
||||||
e.remove();
|
e.remove();
|
||||||
|
|
||||||
// Prevent too many line breaks
|
// Prevent too many line breaks
|
||||||
|
|
Loading…
Reference in New Issue