asciidoctor-gradle-plugin icon indicating copy to clipboard operation
asciidoctor-gradle-plugin copied to clipboard

A Gradle plugin that uses Asciidoctor via JRuby to process AsciiDoc source files within the project.

Results 126 asciidoctor-gradle-plugin issues
Sort by recently updated
recently updated
newest added

Currently `asciidoctor-gradle-jvm-gems:IntTest` is disabled in `build.yml` build. These tests needs to be verified on Windows.

task
help wanted
good first issue
os:windows
4.x

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...

bug
help wanted
good first issue

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...

help wanted

Trigger builds on: - push to master branch when version is snapshot - pull request UI trigger for posting releases

infrastructure

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...

bug

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...

enhancement
3.x
breaking change

See failing tests `org/asciidoctor/gradle/jvm/slides/AsciidoctorRevealJSTaskCachingFunctionalSpec.groovy`

bug
3.x

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 ```

bug
3.x

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...