asciidoctor-gradle-plugin
asciidoctor-gradle-plugin copied to clipboard
A Gradle plugin that uses Asciidoctor via JRuby to process AsciiDoc source files within the project.
I have a document project written in Chinese. If I want to convert the document to PDF, it must be configurated with the theme with Chinese fonts. The maven project...
I created a submodule in the spring framework project. The spring framework project uses the plugin to convert the manual document to HTML and PDF. I want to follow the...
Plugin: id "org.asciidoctor.jvm.convert" version "3.3.2" I have a directory structure as follows: * `build/generated-docs/src/index.adoc` (general documentation page) * `build/generated-docs/src/manpage/*.adoc` (picocli-generated manpages in AsciiDoc format) I have two tasks of type...
Hi, I have also reported this issue at https://github.com/asciidoctor/asciidoctorj/issues/739 with this description: > We cross an issue in Apache OFBiz that could be related. It was working correctly before we...
Trying to source themes from git fails when using Gradle 7.1.1: eg. ``` pdfThemes { gitlab 'my-repo', { organisation = 'my-org' repository = 'asciidoctor-pdf-themes' relativePath = 'themes' tag = 'REL-1.0.0'...
My project: https://github.com/diguage/spring-framework/tree/analysis I use PlantUML in the AsciiDoc document. When I ran the task, it threw an error: ``` ╭─☞ ~/spring-framework git:(analysis) ╰─➜ ./gradlew :truman:clean && ./gradlew :truman:asciidoctor Deprecated...
While working on the JUnit 5 build, I noticed that secondary inputs are no longer tracked. ## Steps to reproduce 1. Clone https://github.com/marcphilipp/gradle-sandbox 2. Run `./gradlew asciidoctor` in `asciidoctor-secondary-sources` 3....
Here's an example while processing hundreds of documents: ``` juin 18, 2020 8:25:15 AM AVERTISSEMENT: : line 38: list item index: expected 1, got 2 juin 18, 2020 8:25:15 AM...
With the old `org.asciidoctor.convert` plugin: Example `build.gradle` file: ```gradle plugins { id 'org.asciidoctor.convert' version '2.4.0' } asciidoctorj { version = '2.4.1' } asciidoctor { sourceDir = file('docs') sources { include...
With Gradle 6.7 a new feature was added: “Java toolchain support” https://blog.gradle.org/java-toolchains It would be great if it was possible to use this to specify the Java version you would...