Fixed omitting first heading while creating sections.
This commit is contained in:
parent
31af77c9a1
commit
ed27d5ffc1
1 changed files with 2 additions and 1 deletions
|
@ -1687,6 +1687,7 @@ public class TextConverter extends ConverterHelper {
|
|||
}
|
||||
if (currentMasterPage == null && style != null) {
|
||||
hnode = StartMasterPage(hnode, style, newPageNumber);
|
||||
hnode = GreenstoneTags.processHeading(currentNode, hnode, pageNum);
|
||||
} else if (checkMasterPageBreak(style) || checkHardBreakBefore(style) || breakBeforeNextNode) {
|
||||
// Insert footnotes
|
||||
inFootnote = true;
|
||||
|
@ -1703,13 +1704,13 @@ public class TextConverter extends ConverterHelper {
|
|||
pageNum++;
|
||||
fitPageNumberToMasterPageStyle();
|
||||
}
|
||||
|
||||
if (currentNode.getNodeType() == Node.ELEMENT_NODE
|
||||
&& Misc.getAttribute(currentNode, XMLString.TEXT_OUTLINE_LEVEL) != null
|
||||
&& !Misc.getAttribute(currentNode, XMLString.TEXT_OUTLINE_LEVEL).isEmpty()) {
|
||||
hnode = GreenstoneTags.processHeading(currentNode, hnode, pageNum);
|
||||
} else {
|
||||
hnode = GreenstoneTags.processPageBreak(currentNode, hnode, pageNum);
|
||||
|
||||
}
|
||||
|
||||
// Print new header
|
||||
|
|
Loading…
Add table
Reference in a new issue