Revert "Prevent white space"

This reverts commit 69729b0566.
This commit is contained in:
M66B 2019-07-08 21:46:57 +02:00
parent 69729b0566
commit 45c6e5678c
1 changed files with 0 additions and 11 deletions

View File

@ -185,17 +185,6 @@ public class HtmlHelper {
document.select("ul").tagName("div");
// Tables
for (Element div : document.select("div")) {
Element parent = div.parent();
while (parent != null) {
if ("td".equals(parent.tagName())) {
div.tagName("span"); // Prevent white space
break;
}
parent = parent.parent();
}
}
for (Element col : document.select("th,td")) {
// separate columns by a space
if (col.nextElementSibling() == null) {