How to use markdown for maven project site?
Quote from http://maven.apache.org/doxia/references/index.html Add this to pom.xml <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.2</version> <dependencies> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-module-markdown</artifactId> <version>1.3</version> </dependency> </dependencies> </plugin> Then start adding pages under src/site/markdown/ with .md extension. For every page add menu item like in sniplet below: <body> <!– http://maven.apache.org/doxia/doxia-sitetools/doxia-decoration-model/decoration.html <item collapse=.. ref=.. name=.. href=”https://stackoverflow.com/questions/14829190/README” img=.. position=.. alt=.. border=.. width=.. height=.. target=.. title=.. > … Read more