From aaf94cd648d8fcc8b3c58bf1ef8da0041262acd0 Mon Sep 17 00:00:00 2001 From: Georgy Litvinov Date: Mon, 22 Apr 2019 12:12:42 +0300 Subject: [PATCH] debug --- src/main/java/writer2latex/xhtml/DocumentSeparator.java | 9 ++++----- src/main/java/writer2latex/xhtml/XhtmlConfig.java | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/src/main/java/writer2latex/xhtml/DocumentSeparator.java b/src/main/java/writer2latex/xhtml/DocumentSeparator.java index 2d62171..96d877f 100644 --- a/src/main/java/writer2latex/xhtml/DocumentSeparator.java +++ b/src/main/java/writer2latex/xhtml/DocumentSeparator.java @@ -58,12 +58,11 @@ public class DocumentSeparator { if (headingSeparation.equals(SECTIONS)){ closeCommentHeadings(hnode, curLevel); } - //System.out.println("before split " + curLevel + " Has content? " + converter.getOutFileIndex()); - //System.out.println(hnode.getNodeName()); - /*if (splitLevel >= curLevel && (converter.outFileHasContent() || converter.getOutFileIndex() == 1)) { - System.out.println("Split happened"); + // TODO: If split then move page div to new document. Dont split in text. Make option in menu + if (splitLevel >= curLevel && (converter.outFileHasContent() || converter.getOutFileIndex() == 1)) { + System.out.println("Split happened"); hnode = converter.nextOutFile(); - }*/ + } //Place to split headings if (headingSeparation.equals(SECTIONS)){ diff --git a/src/main/java/writer2latex/xhtml/XhtmlConfig.java b/src/main/java/writer2latex/xhtml/XhtmlConfig.java index ce95b9b..cffa5ae 100644 --- a/src/main/java/writer2latex/xhtml/XhtmlConfig.java +++ b/src/main/java/writer2latex/xhtml/XhtmlConfig.java @@ -257,7 +257,7 @@ public class XhtmlConfig extends writer2latex.base.ConfigBase { nValue = Misc.getPosInteger(sValue,0); } }; - options[REPEAT_LEVELS] = new IntegerOption("repeat_levels","5") { + options[REPEAT_LEVELS] = new IntegerOption("repeat_levels","0") { @Override public void setString(String sValue) { super.setString(sValue); nValue = Misc.getPosInteger(sValue,0);