13 lines
344 B
Groovy
13 lines
344 B
Groovy
|
apply plugin: 'org.xbib.gradle.plugin.asciidoctor'
|
||
|
|
||
|
asciidoctor {
|
||
|
attributes 'source-highlighter': 'coderay',
|
||
|
toc: 'left',
|
||
|
doctype: 'book',
|
||
|
icons: 'font',
|
||
|
encoding: 'utf-8',
|
||
|
sectlink: true,
|
||
|
sectanchors: true,
|
||
|
linkattrs: true,
|
||
|
imagesdir: 'img'
|
||
|
}
|