From 3176ba0d03117a5bea4e870d0d45af5f962aa033 Mon Sep 17 00:00:00 2001 From: George Litvinov Date: Wed, 21 Mar 2018 16:15:18 +0300 Subject: [PATCH] Fix for page splitter --- src/main/java/writer2latex/xhtml/PageSplitter.java | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/main/java/writer2latex/xhtml/PageSplitter.java b/src/main/java/writer2latex/xhtml/PageSplitter.java index 28a64a2..62f49a6 100644 --- a/src/main/java/writer2latex/xhtml/PageSplitter.java +++ b/src/main/java/writer2latex/xhtml/PageSplitter.java @@ -87,7 +87,6 @@ public class PageSplitter { } i++; } - return onode; } private static boolean handleList(Node listFirstPart, Node list){ @@ -463,6 +462,7 @@ public class PageSplitter { int i = 0; NodeList sectionChildNodes = sectionNode.getChildNodes(); while (sectionChildNodes.getLength() > i) { + Node sectionChildNode = sectionChildNodes.item(0); if ((sectionChildNode.getNodeType() == Node.ELEMENT_NODE)) { String nodeName = sectionChildNode.getNodeName(); @@ -484,12 +484,17 @@ public class PageSplitter { removeSPB(sectionNode); i++; continue; + } else if (nodeName.equals(XMLString.TABLE_TABLE)) { + if (handleTableTable(sectionChildFirstPart, sectionChildNode)){ + sectionFirstPart.appendChild(sectionChildFirstPart); + dataMoved=true; + } } else if (nodeName.equals(XMLString.TEXT_SECTION)) { if (handleSection(sectionChildFirstPart, sectionChildNode)){ sectionFirstPart.appendChild(sectionChildFirstPart); dataMoved=true; } - } + } //split node with spb and exit break; } else { @@ -503,6 +508,7 @@ public class PageSplitter { } } + return dataMoved; }