This is an automated email from the ASF dual-hosted git repository.

kwin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-doxia-converter.git


The following commit(s) were added to refs/heads/master by this push:
     new 801875f  Support Markdown as Parser
801875f is described below

commit 801875fdf0feb664faa229ac3e30b5688f0bacbc
Author: Konrad Windszus <[email protected]>
AuthorDate: Wed Mar 11 08:54:27 2026 +0100

    Support Markdown as Parser
---
 src/main/java/org/apache/maven/doxia/DefaultConverter.java | 2 +-
 src/site/apt/usage.apt.vm                                  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/maven/doxia/DefaultConverter.java 
b/src/main/java/org/apache/maven/doxia/DefaultConverter.java
index 83384fe..2f806db 100644
--- a/src/main/java/org/apache/maven/doxia/DefaultConverter.java
+++ b/src/main/java/org/apache/maven/doxia/DefaultConverter.java
@@ -165,7 +165,7 @@ public class DefaultConverter implements Converter {
         FML("fml", "fml", "faqs", true, false),
         XDOC("xdoc", "xml", "document", true, true),
         XHTML("xhtml", "html", "html", true, true),
-        MARKDOWN("markdown", "md", false, true);
+        MARKDOWN("markdown", "md", true, true);
 
         /** Plexus role hint for Doxia sink/parser */
         private final String roleHint;
diff --git a/src/site/apt/usage.apt.vm b/src/site/apt/usage.apt.vm
index 74e666c..82bde25 100644
--- a/src/site/apt/usage.apt.vm
+++ b/src/site/apt/usage.apt.vm
@@ -54,7 +54,7 @@ Options:
  -X,--debug            Produce execution debug output.
 
 Supported Formats:
- from: apt, fml, xdoc, xhtml or auto
+ from: apt, fml, xdoc, xhtml, markdown or auto
  to:   apt, xdoc, xhtml, markdown
 
 

Reply via email to