|
|
@ -230,9 +230,11 @@ public class HtmlHelper {
|
|
|
|
|
|
|
|
|
|
|
|
for (Element row : document.select("tr")) {
|
|
|
|
for (Element row : document.select("tr")) {
|
|
|
|
row.tagName("span");
|
|
|
|
row.tagName("span");
|
|
|
|
Element next = row.nextElementSibling();
|
|
|
|
if (hasContent(row.childNodes())) {
|
|
|
|
if (next != null && "tr".equals(next.tagName()))
|
|
|
|
Element next = row.nextElementSibling();
|
|
|
|
row.appendElement("br");
|
|
|
|
if (next != null && "tr".equals(next.tagName()))
|
|
|
|
|
|
|
|
row.appendElement("br");
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
document.select("caption").tagName("div");
|
|
|
|
document.select("caption").tagName("div");
|
|
|
|