org.asciidoctor.convert
Owner: Andres Almiray
A Gradle plugin that uses Asciidoctor via JRuby to process AsciiDoc source files within the project
https://github.com/asciidoctor/asciidoctor-gradle-plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("org.asciidoctor.convert") version "1.5.10"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.asciidoctor:asciidoctor-gradle-plugin:1.5.10") } } apply(plugin = "org.asciidoctor.convert")
- Applying plugins to all subprojects .