2022-01-20 13:21:23 +00:00
|
|
|
|
<#import "/templates/options.adoc" as opts>
|
|
|
|
|
|
2023-11-23 12:27:47 +00:00
|
|
|
|
<#macro guide title summary priority=999 includedOptions="" preview="" tileVisible="true">
|
2022-01-14 12:39:22 +00:00
|
|
|
|
:guide-id: ${id}
|
|
|
|
|
:guide-title: ${title}
|
|
|
|
|
:guide-summary: ${summary}
|
|
|
|
|
:guide-priority: ${priority}
|
2023-11-23 12:27:47 +00:00
|
|
|
|
:guide-tile-visible: ${tileVisible}
|
2023-02-09 09:29:41 +00:00
|
|
|
|
:version: ${version}
|
2021-11-18 12:40:02 +00:00
|
|
|
|
|
2023-11-08 14:09:04 +00:00
|
|
|
|
include::../attributes.adoc[]
|
|
|
|
|
|
2022-01-14 12:39:22 +00:00
|
|
|
|
[[${id}]]
|
|
|
|
|
= ${title}
|
2021-11-18 12:40:02 +00:00
|
|
|
|
|
2023-11-23 12:27:47 +00:00
|
|
|
|
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::[]
|
|
|
|
|
|
2021-11-18 12:40:02 +00:00
|
|
|
|
<#nested>
|
|
|
|
|
|
|
|
|
|
<#if includedOptions?has_content>
|
|
|
|
|
== Relevant options
|
|
|
|
|
|
2023-04-17 06:44:34 +00:00
|
|
|
|
<@opts.list options=ctx.options.getOptions(includedOptions) anchor=false></@opts.list>
|
2021-11-18 12:40:02 +00:00
|
|
|
|
</#if>
|
|
|
|
|
</#macro>
|