834ef79509
The content was moved over from the Keycloak Benchmark subproject. Closes #24844 Signed-off-by: Alexander Schwartz <aschwart@redhat.com> Co-authored-by: Pedro Ruivo <pruivo@redhat.com> Co-authored-by: Michal Hajas <mhajas@redhat.com> Co-authored-by: Kamesh Akella <kakella@redhat.com> Co-authored-by: Ryan Emerson <remerson@redhat.com> Co-authored-by: Anna Manukyan <amanukya@redhat.com> Co-authored-by: Thomas Darimont <thomas.darimont@googlemail.com> Co-authored-by: Stian Thorgersen <stian@redhat.com> Co-authored-by: Thomas Darimont <thomas.darimont@googlemail.com> Co-authored-by: AndyMunro <amunro@redhat.com>
27 lines
No EOL
706 B
Text
27 lines
No EOL
706 B
Text
<#import "/templates/options.adoc" as opts>
|
||
|
||
<#macro guide title summary priority=999 includedOptions="" preview="" tileVisible="true">
|
||
:guide-id: ${id}
|
||
:guide-title: ${title}
|
||
:guide-summary: ${summary}
|
||
:guide-priority: ${priority}
|
||
:guide-tile-visible: ${tileVisible}
|
||
:version: ${version}
|
||
|
||
include::../attributes.adoc[]
|
||
|
||
[[${id}]]
|
||
= ${title}
|
||
|
||
ifeval::["${preview}" == "true"]
|
||
WARNING: This {section} is describing a feature which is currently in preview. Please provide your feedback while we’re continuing to work on this.
|
||
endif::[]
|
||
|
||
<#nested>
|
||
|
||
<#if includedOptions?has_content>
|
||
== Relevant options
|
||
|
||
<@opts.list options=ctx.options.getOptions(includedOptions) anchor=false></@opts.list>
|
||
</#if>
|
||
</#macro> |