From 14108fef2ff50b044cfc8dd768c4df49b7aaf96a Mon Sep 17 00:00:00 2001 From: Georgy Litvinov Date: Tue, 23 Apr 2019 10:11:31 +0300 Subject: [PATCH] Separate by page only when page divider set to div --- src/main/java/writer2latex/xhtml/DocumentSeparator.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/writer2latex/xhtml/DocumentSeparator.java b/src/main/java/writer2latex/xhtml/DocumentSeparator.java index af28216..0d1969e 100644 --- a/src/main/java/writer2latex/xhtml/DocumentSeparator.java +++ b/src/main/java/writer2latex/xhtml/DocumentSeparator.java @@ -20,7 +20,7 @@ public class DocumentSeparator { private static final String SECTIONS = "sections"; private static final String DIV = "div"; private int splitLevel = 0; - private boolean splitByPages = true; + private boolean splitByPages = false; private int lastSplitPageNum = 1; private static LinkedList headerStack = new LinkedList(); @@ -39,6 +39,7 @@ public class DocumentSeparator { headingSeparation = config.getHeadingTags(); pageSeparation = config.getPageTags(); splitLevel = config.getXhtmlSplitLevel(); + splitByPages = pageSeparation.equals(DIV) ? true : false; } protected Node processOutlineLevel(Node currentNode, Node hnode, int pageNum) {