2022-01-20 13:21:23 +00:00
|
|
|
|
<#import "/templates/options.adoc" as opts>
|
|
|
|
|
|
2024-03-07 20:36:43 +00:00
|
|
|
|
<#macro guide title summary priority=999 deniedCategories="" includedOptions="" preview="" tileVisible="true" previewDiscussionLink="">
|
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"]
|
2023-12-05 07:57:52 +00:00
|
|
|
|
WARNING: This {section} is describing a feature which is currently in preview.
|
|
|
|
|
ifeval::["${previewDiscussionLink}" == ""]
|
|
|
|
|
Please provide your feedback while we’re continuing to work on this.
|
|
|
|
|
endif::[]
|
|
|
|
|
ifeval::["${previewDiscussionLink}" != ""]
|
|
|
|
|
Please provide your feedback by link:${previewDiscussionLink}[joining this discussion] while we’re continuing to work on this.
|
|
|
|
|
endif::[]
|
2023-11-23 12:27:47 +00:00
|
|
|
|
endif::[]
|
|
|
|
|
|
2021-11-18 12:40:02 +00:00
|
|
|
|
<#nested>
|
|
|
|
|
|
|
|
|
|
<#if includedOptions?has_content>
|
|
|
|
|
== Relevant options
|
|
|
|
|
|
2024-03-07 20:36:43 +00:00
|
|
|
|
<@opts.list options=ctx.options.getOptions(includedOptions, deniedCategories) anchor=false></@opts.list>
|
2021-11-18 12:40:02 +00:00
|
|
|
|
</#if>
|
|
|
|
|
</#macro>
|