kwin commented on code in PR #238: URL: https://github.com/apache/maven-doxia/pull/238#discussion_r1807312444
########## doxia-modules/doxia-module-markdown/src/test/java/org/apache/maven/doxia/module/markdown/MarkdownSinkTest.java: ########## @@ -513,4 +510,24 @@ public void testHeadingAfterInlineElement() { String expected = "Text" + EOL + "# Section1" + EOL + EOL; assertEquals(expected, getSinkContent(), "Wrong heading after inline element!"); } + + @Test + public void testMultilineVerbatimSourceAfterListItem() { + try (final Sink sink = getSink()) { + sink.list(); + sink.listItem(); + sink.text("Before"); + sink.verbatim(SinkEventAttributeSet.SOURCE); + sink.text("codeline1\ncodeline2"); Review Comment: This is supposed to be a multiline comment, replaced `\n` by EOL now. -- 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