Slide 41
Slide 41 text
@codeJENNerator
Gradle
asciidoctor {
dependsOn test
sourceDir = file('src/docs')
outputDir "$projectDir/src/main/resources/public"
+ inputs.dir snippetsDir
backends 'html5'
attributes 'source-highlighter' : 'prettify',
'imagesdir':'images',
'toc':'left',
'icons': 'font',
'setanchors':'true',
'idprefix':'',
'idseparator':'-',
'docinfo1':'true',
+ 'snippets': snippetsDir
}