Separate by page only when page divider set to div
This commit is contained in:
parent
9934bd3494
commit
14108fef2f
1 changed files with 2 additions and 1 deletions
|
@ -20,7 +20,7 @@ public class DocumentSeparator {
|
||||||
private static final String SECTIONS = "sections";
|
private static final String SECTIONS = "sections";
|
||||||
private static final String DIV = "div";
|
private static final String DIV = "div";
|
||||||
private int splitLevel = 0;
|
private int splitLevel = 0;
|
||||||
private boolean splitByPages = true;
|
private boolean splitByPages = false;
|
||||||
private int lastSplitPageNum = 1;
|
private int lastSplitPageNum = 1;
|
||||||
|
|
||||||
private static LinkedList<Integer> headerStack = new LinkedList<Integer>();
|
private static LinkedList<Integer> headerStack = new LinkedList<Integer>();
|
||||||
|
@ -39,6 +39,7 @@ public class DocumentSeparator {
|
||||||
headingSeparation = config.getHeadingTags();
|
headingSeparation = config.getHeadingTags();
|
||||||
pageSeparation = config.getPageTags();
|
pageSeparation = config.getPageTags();
|
||||||
splitLevel = config.getXhtmlSplitLevel();
|
splitLevel = config.getXhtmlSplitLevel();
|
||||||
|
splitByPages = pageSeparation.equals(DIV) ? true : false;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected Node processOutlineLevel(Node currentNode, Node hnode, int pageNum) {
|
protected Node processOutlineLevel(Node currentNode, Node hnode, int pageNum) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue