Removed text:note content from heading section title

This commit is contained in:
Georgy Litvinov 2016-09-25 21:18:56 +03:00 committed by Georgy Litvinov
parent 8547521ccd
commit f589d9d067
2 changed files with 8 additions and 3 deletions

View file

@ -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;
}

View file

@ -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) {