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

Hello, I'm trying to use the gradle plugin behind a corporate proxy and took the gradle pdf example. I'm sitting behind a corporal proxy which won't let me resolve stuff...

Since I want to create my own task I do not apply the plugin. ```gradle import org.asciidoctor.gradle.jvm.AsciidoctorJExtension import org.asciidoctor.gradle.jvm.AsciidoctorTask plugins { id 'org.asciidoctor.jvm.convert' version '3.0.0-alpha.4' apply false } repositories {...

documentation
3.x
good first issue

Hi, In #292 (v2.2.0) the plugin offered the nifty `{gradle-relative-srcdir}` attributes, however it can only be used in the documents themselves. I'm thinking that an improvement could be made to...

enhancement
help wanted
5.x

When I create a distribution of my application using Gradle Application, which includes the output of the asciidoctor task, it is added twice. ``` plugins { id 'org.asciidoctor.jvm.convert' version '2.2.0'...

bug
2.x

After updating from `id 'org.asciidoctor.jvm.convert' version '2.4.0'` to `id 'org.asciidoctor.jvm.convert' version '3.0.0'` the asciidoctor task hangs infinitely. The task configuration is: ``` asciidoctor { baseDir = file('src') sourceDir = file('src')...

3.x

When configuring the `asciidoctor` task using the _Kotlin_ DSL as described [here](https://asciidoctor.github.io/asciidoctor-gradle-plugin/master/user-guide/#_defining_sources), i.e. ```kotlin // My build.gradle.kt file import org.asciidoctor.gradle.jvm.AsciidoctorTask plugins { id("org.asciidoctor.jvm.convert") version "2.3.0" } tasks { "asciidoctor"(AsciidoctorTask::class) {...

long-open:maybe-close?
kotlin-dsl
awaiting feedback

Hi there, I want to make pdfs from all adoc files from some source directory, one pdf per adoc. When I remove any target.pdf file, all of the source files...

help wanted

With Amazoin discontinuing the old kindlegen, we need to find a new solution to the issue.

When the PDF backend is specified, resources are unnecessarily copied to its output directory. The build script below is enough to reproduce this behavior. As desired, the images directory will...

Consider the following example: ```gradle dependencies { asciidoctorGems 'rubygems:rouge:3.18.0' } ``` If I update the version of Rouge and build again, the task will be UP-TO-DATE: ```gradle dependencies { asciidoctorGems...

5.x