mddoclet
is a very simple Doclet that generates documents from JavaDoc comments in Markdown format.
# CLASS: `com.github.dakusui.mddoclet.example.ExampleClass`
Hello, I am the first example class.
Hallo!
こんにちは! How are you?
I am implementing `ExampleInterface`.
@link
+ **SEE:
** [`ExampleInterface`](/Users/ukai.hiroshi/Documents/github/moneyforward/mddoclet/target/classes/JavaMarkdown//com.github.dakusui.mddoclet.example/ExampleInterface)
<a id="exampleField2"></a>
## **FIELD:** exampleField2
An example `int` field.
<a id="exampleMethod1"></a>
## **METHOD:** `String` exampleMethod1()
This is a method to return `field1`.
+ **RETURN:** a string value
Include following fragment in your pom.xml
under .project.build.plugins
.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<configuration>
<doclet>com.github.dakusui.mddoclet.MdDoclet</doclet>
<docletArtifact>
<groupId>com.github.moneyforward</groupId>
<artifactId>mddoclet</artifactId>
<version>${mddoclet-doclet-plugin.version}</version>
</docletArtifact>
<useStandardDocletOptions>false</useStandardDocletOptions>
<additionalOptions>
<additionalOption>-overview ${project.basedir}/src/main/javadoc/overview.md</additionalOption>
<additionalOption>-d ${project.build.outputDirectory}/JavaMarkdown</additionalOption>
<additionalOption>--source-path ${project.build.sourceDirectory}</additionalOption>
<additionalOption>-base-path /docs/default/Component/autotest-ca/3-APISpecification</additionalOption>
<additionalOption>-target-packages '.*#.*example.*'</additionalOption>
</additionalOptions>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>pre-site</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
Do not forget you need to define the property: mddoclet-doclet-plugin.version
.
Then, do mvn clean package
.
It will generate documentation set generated from your JavaDoc comment for your classes whose pacakge name contains example
(--target-packages
).
The generated files will be found under target/classes/JavaMarkdown
(-d
).
Absolute links to .md
generated by this doclet from your Java source files will have /docs/default/Component/autotest-ca/3-APISpecifications
before the path from src/main/java
(-base-path
).