Removed text:note content from heading section title
This commit is contained in:
parent
8547521ccd
commit
f589d9d067
2 changed files with 8 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue