-
Bug
-
Resolution: Done
-
Minor
-
None
-
None
pom.xml currently contains the following config for asciidoctor-maven-plugin:
<plugin> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctor-maven-plugin</artifactId> <version>${version.asciidoctor.plugin}</version> <configuration> <attributes> <sourceHighlighter>coderay</sourceHighlighter>
As per Asciidoctor-maven-plugin 2.x.x migration guide,
The configuration option sourceHighlighter has been removed in favor of setting it as an attribute. If you are using it, you will need to set it as follows:
new configuration
<configuration> <attributes> <source-highlighter>coderay</source-highlighter> </attributes> </configuration>
Note the attribute contains a hyphen.
- is related to
-
WFLY-17464 Asciidoctor attribute sourceHighlighter position
- Closed