Skip to content

Commit

Permalink
apply post processing of tei sections of text without considering tab…
Browse files Browse the repository at this point in the history
…les and figures labels
  • Loading branch information
lfoppiano committed Oct 17, 2022
1 parent 52352a8 commit 1836680
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -2618,7 +2618,8 @@ private StringBuilder getSectionAsTEI(String xmlType,
if (StringUtils.isNotBlank(text) ) {
resultLabelling = label(text);
}
output = teiFormatter.processTEIDivSection(xmlType, indentation, resultLabelling, tokens, resCitations, config);
String postProcessedText = postProcessLabeledAbstract(resultLabelling);
output = teiFormatter.processTEIDivSection(xmlType, indentation, postProcessedText, tokens, resCitations, config);
}
}
return output;
Expand Down

0 comments on commit 1836680

Please sign in to comment.