diff --git a/src/main/java/writer2latex/xhtml/StyleInfo.java b/src/main/java/writer2latex/xhtml/StyleInfo.java
index effca07..5a97343 100644
--- a/src/main/java/writer2latex/xhtml/StyleInfo.java
+++ b/src/main/java/writer2latex/xhtml/StyleInfo.java
@@ -25,6 +25,8 @@
package writer2latex.xhtml;
+import java.util.HashSet;
+
import writer2latex.xhtml.style.properties.Properties;
public class StyleInfo {
@@ -33,6 +35,7 @@ public class StyleInfo {
public Properties props = new Properties(";");
public String sLang = null;
public String sDir = null;
+ public HashSet ancestors;
public boolean hasAttributes() {
return !props.isEmpty() || sClass!=null || sLang!=null || sDir!=null;
@@ -41,4 +44,16 @@ public class StyleInfo {
String out = "sTagName: " + sTagName + "\n sClass: " + sClass + "\n sLang: " + "\n sDir: " + sDir + "\n Props: "+ props;
return out;
}
+ public StyleInfo(){
+ ancestors = new HashSet();
+ }
+ public boolean unknownAncestor(String ancestor) {
+ if (!ancestors.contains(ancestor)){
+ return true;
+ }
+ return false;
+ }
+ public void addAncestor(String ancestor) {
+ ancestors.add(ancestor);
+ }
}
diff --git a/src/main/java/writer2latex/xhtml/content/TextParser.java b/src/main/java/writer2latex/xhtml/content/TextParser.java
index b3d718e..23b5729 100644
--- a/src/main/java/writer2latex/xhtml/content/TextParser.java
+++ b/src/main/java/writer2latex/xhtml/content/TextParser.java
@@ -30,6 +30,9 @@ import java.util.Stack;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
+
+import pro.litvinovg.xml.Debug;
+
import org.w3c.dom.Element;
import writer2latex.util.Misc;
@@ -172,8 +175,9 @@ public class TextParser extends Parser {
extractRealTOC(onode);
}
//Split pages
+
if (!pageSeparator.equals("none")) {
- onode = (Element) ODFPageSplitter.splitSoftPageBreak(onode,ofr);
+ onode = (Element) ODFPageSplitter.splitText(onode,ofr);
}
hnode = (Element)traverseBlockText(onode,hnode);
diff --git a/src/main/java/writer2latex/xhtml/style/StyleWithPropertiesParser.java b/src/main/java/writer2latex/xhtml/style/StyleWithPropertiesParser.java
index 135c481..1b8d3f8 100644
--- a/src/main/java/writer2latex/xhtml/style/StyleWithPropertiesParser.java
+++ b/src/main/java/writer2latex/xhtml/style/StyleWithPropertiesParser.java
@@ -102,17 +102,20 @@ public abstract class StyleWithPropertiesParser extends StyleParser {
if (!inlineCSS || styleName == null) {
return;
}
+ StyleWithProperties style = (StyleWithProperties) getStyles().getStyle(styleName);
if (info.sClass != null && !info.sClass.equals(styleName)) {
StyleWithProperties classStyle = (StyleWithProperties) getStyles().getStyle(info.sClass);
if (classStyle != null) {
applyProperties(classStyle, info.props, true);
String parentName = classStyle.getParentName();
if (parentName != null && !parentName.equals(styleName)) {
- readParentStyle(classStyle.getParentName(), info);
+ if (info.unknownAncestor(parentName)) {
+ info.addAncestor(parentName);
+ readParentStyle(parentName, info);
+ }
}
}
}
- StyleWithProperties style = (StyleWithProperties) getStyles().getStyle(styleName);
if (style == null) {
return;
}
@@ -123,7 +126,10 @@ public abstract class StyleWithPropertiesParser extends StyleParser {
}
String parentName = style.getParentName();
if (parentName != null && !parentName.equals(styleName)) {
- readParentStyle(style.getParentName(), info);
+ if (info.unknownAncestor(parentName)) {
+ info.addAncestor(parentName);
+ readParentStyle(parentName, info);
+ }
}
}