Keycloak
1<#import "/templates/options.adoc" as opts>
2
3<#macro guide title summary priority=999 includedOptions="" preview="" tileVisible="true" previewDiscussionLink="">
4:guide-id: ${id}
5:guide-title: ${title}
6:guide-summary: ${summary}
7:guide-priority: ${priority}
8:guide-tile-visible: ${tileVisible}
9:version: ${version}
10
11include::../attributes.adoc[]
12
13[[${id}]]
14= ${title}
15
16ifeval::["${preview}" == "true"]
17WARNING: This {section} is describing a feature which is currently in preview.
18ifeval::["${previewDiscussionLink}" == ""]
19Please provide your feedback while we’re continuing to work on this.
20endif::[]
21ifeval::["${previewDiscussionLink}" != ""]
22Please provide your feedback by link:${previewDiscussionLink}[joining this discussion] while we’re continuing to work on this.
23endif::[]
24endif::[]
25
26<#nested>
27
28<#if includedOptions?has_content>
29== Relevant options
30
31<@opts.list options=ctx.options.getOptions(includedOptions) anchor=false></@opts.list>
32</#if>
33</#macro>