kwin commented on code in PR #193: URL: https://github.com/apache/maven-doxia/pull/193#discussion_r1443267714
########## doxia-modules/doxia-module-xhtml5/src/main/java/org/apache/maven/doxia/module/xhtml5/Xhtml5Parser.java: ########## @@ -158,7 +158,7 @@ protected void handleEndTag(XmlPullParser parser, Sink sink) } else if (parser.getName().equals(TITLE.toString())) { sink.title_(); } else if (parser.getName().equals(BODY.toString())) { - consecutiveSections(0, sink, null); + emitHeadingSections(0, sink, false); Review Comment: This is just about replacing the deprecated method with the non deprecated one. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org