Small improvement

This commit is contained in:
M66B 2020-11-10 09:57:08 +01:00
parent 0188979140
commit c4e366ce9f
1 changed files with 7 additions and 1 deletions

View File

@ -843,7 +843,12 @@ public class HtmlHelper {
List<Node> merge = new ArrayList<>();
for (Element col : row.children()) {
Element next = col.nextElementSibling();
if (col.childNodeSize() == 1) {
// Merge single images into next column
if (col.childNodeSize() == 1 &&
(next == null ||
next.attr("x-align")
.equals(col.attr("x-align")))) {
Node lonely = col.childNode(0);
if (lonely instanceof Element &&
"img".equals(lonely.nodeName())) {
@ -870,6 +875,7 @@ public class HtmlHelper {
col.appendChild(strong);
}
// Flow not / left aligned columns
String align = col.attr("x-align");
if (TextUtils.isEmpty(align) ||
"left".equals(align) ||