diff --git a/source/java/writer2latex/xhtml/GreenstoneTags.java b/source/java/writer2latex/xhtml/GreenstoneTags.java index 81946b8..2122e9b 100644 --- a/source/java/writer2latex/xhtml/GreenstoneTags.java +++ b/source/java/writer2latex/xhtml/GreenstoneTags.java @@ -152,9 +152,14 @@ public class GreenstoneTags { } i++; } - + NodeList notes = ((Element) content).getElementsByTagName(XMLString.TEXT_NOTE); + int j = 0; + while (j < notes.getLength()){ + Node note = notes.item(j); + note.getParentNode().removeChild(note); + } title = content.getTextContent(); - + System.out.println("getTitle"); return title; } diff --git a/source/java/writer2latex/xhtml/XhtmlConfig.java b/source/java/writer2latex/xhtml/XhtmlConfig.java index 5b8ec84..e91855f 100644 --- a/source/java/writer2latex/xhtml/XhtmlConfig.java +++ b/source/java/writer2latex/xhtml/XhtmlConfig.java @@ -294,7 +294,7 @@ public class XhtmlConfig extends writer2latex.base.ConfigBase { options[DIRECTORY_ICON] = new Option("directory_icon",""); options[DOCUMENT_ICON] = new Option("document_icon",""); options[HEADING_TAGS] = new Option("heading_tags","sections"); - options[PAGE_TAGS] = new Option("page_tags","sections"); + options[PAGE_TAGS] = new Option("page_tags","div"); } protected void readInner(Element elm) {