Files
keycloak/docs/guides/server/all-config.adoc
Alexander Schwartz 097fe4ab46 Making IDs for configuration options unique
Closes #41423

Signed-off-by: Alexander Schwartz <aschwart@redhat.com>
2025-07-28 14:57:16 -03:00

18 lines
520 B
Plaintext

<#import "/templates/guide.adoc" as template>
<#import "/templates/options.adoc" as opts>
<@template.guide
title="All configuration"
summary="Review build options and configuration for {project_name}.">
<#list ctx.options.categories as category>
<#assign categoryOptions=ctx.options.getValues(category)>
<#if categoryOptions?has_content>
[#category-${category.name()?lower_case}]
== ${category.heading}
<@opts.list options=categoryOptions categoryName=category.name()></@opts.list>
</#if>
</#list>
</@template.guide>