kwin commented on code in PR #194: URL: https://github.com/apache/maven-doxia/pull/194#discussion_r1450314224
########## doxia-core/src/main/java/org/apache/maven/doxia/parser/AbstractXmlParser.java: ########## @@ -194,6 +215,7 @@ protected SinkEventAttributeSet getAttributesFromParser(XmlPullParser parser) { * @throws org.apache.maven.doxia.macro.MacroExecutionException if there's a problem executing a macro */ private void parseXml(XmlPullParser parser, Sink sink) throws XmlPullParserException, MacroExecutionException { + sink.setDocumentLocator(new XmlPullParserLocator(parser, null)); Review Comment: @michael-o Is the 3rd argument of https://maven.apache.org/doxia/doxia/doxia-core/apidocs/org/apache/maven/doxia/parser/Parser.html#parse-java.io.Reader-org.apache.maven.doxia.sink.Sink-java.lang.String- supposed to contain the file path? The javadoc is a bit fuzzy here.... -- 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