e4aa1b5f95
* Conditionally enable and disable CLI options Closes #13113 Signed-off-by: Martin Bartoš <mabartos@redhat.com> * Support for duplicates in config Signed-off-by: Martin Bartoš <mabartos@redhat.com> * Fix rendering config options in docs Fixes #26515 Signed-off-by: Martin Bartoš <mabartos@redhat.com> * Reorder OptionsDistTest Signed-off-by: Martin Bartoš <mabartos@redhat.com> --------- Signed-off-by: Martin Bartoš <mabartos@redhat.com>
33 lines
No EOL
1,004 B
Text
33 lines
No EOL
1,004 B
Text
<#import "/templates/options.adoc" as opts>
|
||
|
||
<#macro guide title summary priority=999 deniedCategories="" includedOptions="" preview="" tileVisible="true" previewDiscussionLink="">
|
||
: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.
|
||
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::[]
|
||
endif::[]
|
||
|
||
<#nested>
|
||
|
||
<#if includedOptions?has_content>
|
||
== Relevant options
|
||
|
||
<@opts.list options=ctx.options.getOptions(includedOptions, deniedCategories) anchor=false></@opts.list>
|
||
</#if>
|
||
</#macro> |