2022-01-20 13:21:23 +00:00
|
|
|
<#import "/templates/options.adoc" as opts>
|
|
|
|
|
2022-01-14 12:39:22 +00:00
|
|
|
<#macro guide title summary priority=999 includedOptions="">
|
|
|
|
:guide-id: ${id}
|
|
|
|
:guide-title: ${title}
|
|
|
|
:guide-summary: ${summary}
|
|
|
|
:guide-priority: ${priority}
|
2023-02-09 09:29:41 +00:00
|
|
|
:version: ${version}
|
2021-11-18 12:40:02 +00:00
|
|
|
|
2022-01-14 12:39:22 +00:00
|
|
|
[[${id}]]
|
|
|
|
= ${title}
|
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>
|