Rendering lightweight markup languages with maven
Asked Answered
H

2

6

I would like to render project documentation in html from a lighweight markup language like markdown or textile. What's easiest way to do this?

Hashim answered 18/2, 2011 at 8:1 Comment(0)
G
3

The maven site plugin is able to render the APT format ("Almost Plain Text") to build html for the project (documentation) site.

@See:

http://maven.apache.org/plugins/maven-site-plugin/examples/creating-content.html

http://maven.apache.org/doxia/references/apt-format.html

Gypsy answered 18/2, 2011 at 8:11 Comment(0)
V
4

You can also use other lightweight markup languages with the maven-site-plugin. This is done through doxia (maven's content generation framework). There is a doxia module for markdown, for example:

http://code.google.com/p/doxia-module-markdown/wiki/Usage

Violetvioleta answered 30/4, 2011 at 13:17 Comment(0)
G
3

The maven site plugin is able to render the APT format ("Almost Plain Text") to build html for the project (documentation) site.

@See:

http://maven.apache.org/plugins/maven-site-plugin/examples/creating-content.html

http://maven.apache.org/doxia/references/apt-format.html

Gypsy answered 18/2, 2011 at 8:11 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.