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) { if (currentMasterPage == null && style != null) {
hnode = StartMasterPage(hnode, style, newPageNumber); hnode = StartMasterPage(hnode, style, newPageNumber);
hnode = GreenstoneTags.processHeading(currentNode, hnode, pageNum);
} else if (checkMasterPageBreak(style) || checkHardBreakBefore(style) || breakBeforeNextNode) { } else if (checkMasterPageBreak(style) || checkHardBreakBefore(style) || breakBeforeNextNode) {
// Insert footnotes // Insert footnotes
inFootnote = true; inFootnote = true;
@ -1703,13 +1704,13 @@ public class TextConverter extends ConverterHelper {
pageNum++; pageNum++;
fitPageNumberToMasterPageStyle(); fitPageNumberToMasterPageStyle();
} }
if (currentNode.getNodeType() == Node.ELEMENT_NODE if (currentNode.getNodeType() == Node.ELEMENT_NODE
&& Misc.getAttribute(currentNode, XMLString.TEXT_OUTLINE_LEVEL) != null && Misc.getAttribute(currentNode, XMLString.TEXT_OUTLINE_LEVEL) != null
&& !Misc.getAttribute(currentNode, XMLString.TEXT_OUTLINE_LEVEL).isEmpty()) { && !Misc.getAttribute(currentNode, XMLString.TEXT_OUTLINE_LEVEL).isEmpty()) {
hnode = GreenstoneTags.processHeading(currentNode, hnode, pageNum); hnode = GreenstoneTags.processHeading(currentNode, hnode, pageNum);
} else { } else {
hnode = GreenstoneTags.processPageBreak(currentNode, hnode, pageNum); hnode = GreenstoneTags.processPageBreak(currentNode, hnode, pageNum);
} }
// Print new header // Print new header