Fixed omitting first heading while creating sections.

This commit is contained in:
Georgy Litvinov 2018-10-17 18:06:55 +03:00
parent 31af77c9a1
commit ed27d5ffc1

View file

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