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);