michael-o commented on code in PR #255:
URL: https://github.com/apache/maven-doxia/pull/255#discussion_r1900793951
##########
doxia-modules/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/LastTwoLinesBufferingWriter.java:
##########
@@ -91,4 +91,8 @@ public void flush() throws IOException {
public void close() throws IOException {
out.close();
}
+
+ public boolean isAfterDigit() {
+ return currentLine.length() > 1 &&
Character.isDigit(currentLine.charAt(currentLine.length() - 1));
+ }
Review Comment:
This also covers non-European digits. Is that expected?
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]