Fix to handle extra #enddocregion tags

This commit is contained in:
Jay Traband 2015-08-11 19:12:19 -07:00 committed by YuCheng Hu
parent 7349fad338
commit 4bc13ad1a6
1 changed files with 5 additions and 3 deletions

View File

@ -25,9 +25,11 @@ module.exports = function regionExtractor() {
lines[ix] = nullLine; lines[ix] = nullLine;
docs.push(doc); docs.push(doc);
} else if (hasEndRegionTag(line)) { } else if (hasEndRegionTag(line)) {
lines[ix] = nullLine; if (doc) {
doc.endIx = ix; lines[ix] = nullLine;
doc = docStack.pop(); doc.endIx = ix;
doc = docStack.pop();
}
} }
} }
}); });