Asciidoclet is a Javadoc Doclet based on Asciidoctor that lets you write Javadoc in the AsciiDoc syntax.
Traditionally, Javadocs have mixed minor markup with HTML which, if you’re writing for HTML Javadoc output, becomes unreadable and hard to write over time. This is where lightweight markup languages like AsciiDoc thrive. AsciiDoc straddles the line between readable markup and beautifully converted content.
Asciidoclet incorporates an AsciiDoc converter (Asciidoctor via the Asciidoctor Java integration library) into a simple Doclet that enables AsciiDoc formatting within Javadoc comments and tags.
Here’s an example of a class with traditional Javadoc.
/**
* <h1>Asciidoclet</h1>
*
* <p>Sample comments that include {@code source code}.</p>
*
* <pre>{@code
* public class Asciidoclet extends Doclet {
* private final Asciidoctor asciidoctor = Asciidoctor.Factory.create();
*
* {@literal @}SuppressWarnings("UnusedDeclaration")
* public static boolean start(RootDoc rootDoc) {
* new Asciidoclet().render(rootDoc);
* return Standard.start(rootDoc);
* }
* }
* }</pre>
*
* @author <a href="https://github.com/johncarl81">John Ericksen</a>
*/
public class Asciidoclet extends Doclet {
}
This is the same class with Asciidoclet.
/**
* = Asciidoclet
*
* Sample comments that include `source code`.
*
* [source,java]
* --
* public class Asciidoclet extends Doclet {
* private final Asciidoctor asciidoctor = Asciidoctor.Factory.create();
*
* @SuppressWarnings("UnusedDeclaration")
* public static boolean start(RootDoc rootDoc) {
* new Asciidoclet().render(rootDoc);
* return Standard.start(rootDoc);
* }
* }
* --
*
* @author https://github.com/johncarl81[John Ericksen]
*/
public class Asciidoclet extends Doclet {
}
The result is readable source and beautifully converted Javadocs, the best of both worlds!
Run Javadoc with the org.asciidoctor.asciidoctlet.Asciidoclet
doclet class.
Some examples for common build systems are shown below.
See Doclet Options for supported options.
Asciidoclet may be used via a maven-javadoc-plugin
doclet:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<configuration>
<source>11</source>
<additionalJOptions>
<additionalJOption>-J--add-exports=jdk.javadoc/jdk.javadoc.internal.tool=ALL-UNNAMED</additionalJOption> // (1)
<additionalJOption>-Xdoclint:all,-html,-accessibility</additionalJOption> // (2)
</additionalJOptions>
<doclet>org.asciidoctor.asciidoclet.Asciidoclet</doclet>
<docletArtifact>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoclet</artifactId>
<version>${asciidoclet.version}</version>
</docletArtifact>
<overview>src/main/java/overview.adoc</overview>
<additionalparam>
--base-dir ${project.basedir}
--attribute "name=${project.name}"
--attribute "version=${project.version}"
--attribute "title-link=https://example.com[${project.name} ${project.version}]"
</additionalparam>
</configuration>
</plugin>
-
For the asciidoclet to work, it needs access to the internals of the
javadoc
tool. This incantation makes that access possible on moduler JDKs. -
Asciidoctor may generate HTML that produces doclint errors, which can cause the build to fail. To work around that, we have to disable these doclint categories.
Asciidoclet may be used via a doclet in the Javadoc
task:
configurations {
asciidoclet
}
dependencies {
asciidoclet 'org.asciidoctor:asciidoclet:1.+'
}
javadoc {
options.docletpath = configurations.asciidoclet.files.asType(List)
options.doclet = 'org.asciidoctor.asciidoclet.Asciidoclet'
options.overview = "src/main/java/overview.adoc"
options.addStringOption "-base-dir", "${projectDir}" // (1)
options.addStringOption "-attribute", // (2)
"name=${project.name}," +
"version=${project.version}," +
"title-link=https://example.com[${project.name} ${project.version}]")
}
-
Option names passed to Gradle’s
javadoc
task must omit the leading "-", so here "-base-dir" means "--base-dir". See Doclet Options below. -
Gradle’s
javadoc
task does not allow multiple occurrences of the same option. Multiple attributes can be specified in a single string, separated by commas.
Asciidoclet may be used via a doclet element in Ant’s javadoc
task:
<javadoc destdir="target/javadoc"
sourcepath="src"
overview="src/overview.adoc">
<doclet name="org.asciidoctor.asciidoclet.Asciidoclet" pathref="asciidoclet.classpath"> <!--(1)-->
<param name="--base-dir" value="${basedir}"/>
<param name="--attribute" value="name=${ant.project.name}"/>
<param name="--attribute" value="version=${version}"/>
<param name="--attribute" value="title-link=https://example.com[${ant.project.name} ${version}]"/>
</doclet>
</javadoc>
-
Assumes a path reference has been defined for Asciidoclet and its dependencies, e.g. using Ivy or similar.
- --base-dir <dir>
-
Sets the base directory that will be used to resolve relative path names in AsciiDoc
include::
directives. This should be set to the project’s root directory. - -a, --attribute "name[=value], …"
-
Sets document attributes that will be expanded in Javadoc comments. The argument is a string containing a single attribute, or multiple attributes separated by commas.
This option may be used more than once, for example:
-a name=foo -a version=1
.Attributes use the same syntax as Asciidoctor command-line attributes:
-
name
sets the attribute (with an empty value) -
name=value
assignsvalue
to the attribute. Occurrences of{name}
in the Javadoc will be replaced by this value. -
name=value@
assignsvalue
to the attribute, unless the attribute is defined in the attributes file or Javadoc. -
name!
unsets the attribute.
The document attribute
javadoc
is set automatically by the doclet. This can be used for conditionally selecting content when using the same AsciiDoc file for Javadoc and other documentation. -
- --attributes-file <file>
-
Reads document attributes from an AsciiDoc file. The attributes will be expanded in Javadoc comments.
If
<file>
is a relative path name, it is assumed to be relative to the--base-dir
directory.Attributes set by the
-a
/--attribute
option take precedence over those in the attributes file. - -r, --require <library>,…
-
Make the specified RubyGems library available to Asciidoctor’s JRuby runtime, for example
-r asciidoctor-diagram
.This option may be specified more than once. Alternatively multiple library names may be specified in a single argument, separated by commas.
- --gem-path <path>
-
Sets the
GEM_PATH
for Asciidoctor’s JRuby runtime. This option is only needed when using the--require
option to load additional gems on theGEM_PATH
. - -overview <file>
-
Overview documentation can be generated from an AsciiDoc file using the standard
-overview
option. Files matching*.adoc
,*.ad
,*.asciidoc
or*.txt
are processed by Asciidoclet. Other files are assumed to be HTML and will be processed by the standard doclet. - --asciidoclet-include <filter>
- --asciidoclet-exclude <filter>
-
Explicitly include or exclude classes from being processed as AsciiDoc comments by ant-style path matching (see ant-style-path-matcher).
If
--asciidoclet-include
is specified, only classes and packages matching the include filter are processed. Likewise, if--include
is unspecified, all classes are processed. If--asciidoclet-exclude
is specified, classes matching the filter are not processed.Both
--asciidoclet-include
and--asciidoclet-exclude
can be mixed. In addition, classes excluded with--asciidoclet-exclude
or not matching a specified--asciidoclet-include
may be included by annotating the class level javadoc with@asciidoclet
. Doing so allows writing one class at a time while respecting refactors. This feature allows the migration of documentation from HTML to AsciiDoc in a piecemeal way.
Currently, there is an intermittent benign warning message that is emitted during a run of Asciidoclet stating the following:
WARN: tilt autoloading 'tilt/haml' in a non thread-safe way; explicit require 'tilt/haml' suggested.
Unfortunately, until the underlying library removes this warning message, it will be logged during the build.
Make sure to see Asciidoclet 1.5.0 Release Notes for additional features not documented here.
For more information:
If you have questions or would like to help develop this project, please join the Asciidoctor Chat.
We have a Powered by Asciidoclet page. If you have an example of nifty JavaDoc powered by Asciidoclet, please send us a pull request.
Copyright (C) 2013-2015 John Ericksen Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.