17 lines
441 B
Text
17 lines
441 B
Text
|
<#import "/templates/guide.adoc" as template>
|
||
|
<#import "/templates/options.adoc" as opts>
|
||
|
|
||
|
<@template.guide
|
||
|
title="All provider configuration"
|
||
|
summary="Complete list of all the available provider configuration options">
|
||
|
|
||
|
<#list ctx.options.getProviderOptions() as spi, providers>
|
||
|
== ${spi}
|
||
|
<#list providers as provider, options>
|
||
|
=== ${provider}
|
||
|
<@opts.list options=options buildIcon=false></@opts.list>
|
||
|
</#list>
|
||
|
</#list>
|
||
|
|
||
|
</@template.guide>
|