michael-o commented on code in PR #198: URL: https://github.com/apache/maven-doxia/pull/198#discussion_r1477108496
########## doxia-modules/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownMarkup.java: ########## @@ -77,11 +77,11 @@ public interface MarkdownMarkup extends TextMarkup { /** Syntax for the link start: "](" */ String LINK_START_2_MARKUP = "]("; - /** Syntax for the ordered list item: '1.' */ - String LIST_ORDERED_ITEM_START_MARKUP = "1."; + /** Syntax for the ordered list item: '1. ' */ + String LIST_ORDERED_ITEM_START_MARKUP = "1. "; - /** Syntax for the unordered list item: "-" */ - String LIST_UNORDERED_ITEM_START_MARKUP = "-"; + /** Syntax for the unordered list item: "- " */ + String LIST_UNORDERED_ITEM_START_MARKUP = "- "; Review Comment: This is rather a fix, right? -- 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