Separate by page only when page divider set to div

This commit is contained in:
Georgy Litvinov 2019-04-23 10:11:31 +03:00
parent 9934bd3494
commit 14108fef2f

View file

@ -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<Integer> headerStack = new LinkedList<Integer>();
@ -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) {