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.
Currently `asciidoctor-gradle-jvm-gems:IntTest` is disabled in `build.yml` build. These tests needs to be verified on Windows.
I've looked at configuration samples on github (https://github.com/search?q=dependsOn+asciidoctorGemsPrepare&type=code) to find out how to use `asciidoctorGemsPrepare` and the way to go seems to make the asciidoctor task depend on `asciidoctorGemsPrepare` via...
I've an ISO 8859-1 encoded file, which I'm Including like this: ```asciidoc [source] ---- include::assets/application.properties[encoding=iso-8859-1] ---- ``` This works fine with IntelliJ Plugin AsciiDoc v0.39.7 and on the command line...
Trigger builds on: - push to master branch when version is snapshot - pull request UI trigger for posting releases
I have added attributes to the revealjs configuration but they seem to be totally ignored. I could not use the rouge source-highlither and the hash does not seem to be...
Now that this project https://github.com/asciidoctor/asciidoctorj-reveal.js is up and publishing, we can move away from pulling in the GEMs directly and thus remove the need of the `reveal.js` plugin to depend...
See failing tests `org/asciidoctor/gradle/jvm/slides/AsciidoctorRevealJSTaskCachingFunctionalSpec.groovy`
See failing test in `gems/src/integrationTest/org/asciidoctor/gradle/jvm/gems/AsciidoctorGemPrepareTaskCachingFunctionalSpec.groovy`. Also ``` ./gradlew :asciidoctor-gradle-jvm-gems:cleanIntTest \ :asciidoctor-gradle-jvm-gems:intTest --tests \ org.asciidoctor.gradle.jvm.gems.AsciidoctorGemPrepareTaskCachingFunctionalSpec ```
I am trying to require a custom extension for AsciidoctorJS with the gradle plugin. I couldn't make this work, so I prepared a small example which uses the emoji extension...
Given the following build script: ```kotlin plugins { id("org.asciidoctor.jvm.gems") version "3.3.2" id("org.asciidoctor.jvm.convert") version "3.3.2" } repositories { mavenCentral() } tasks.asciidoctor { sources("index.adoc") sourceDirProperty.set(layout.projectDirectory.dir("docs")) outputDirProperty.set(layout.buildDirectory.dir("docs")) } ``` Then an absolute path...