Change the list features to the format of a description list (#17237)
CIAM-5050
This commit is contained in:
parent
923a321a55
commit
8abe984844
1 changed files with 10 additions and 6 deletions
|
@ -60,19 +60,23 @@ These features may change or be removed at a future release.
|
|||
|
||||
== Deprecated features
|
||||
|
||||
<#if ctx.features.deprecated?has_content>
|
||||
|
||||
The following list contains deprecated features that will be removed in a future release. These features are disabled by default.
|
||||
|
||||
<@showFeatures ctx.features.deprecated/>
|
||||
|
||||
<#else>
|
||||
|
||||
There are no deprecated features in this Keycloak release.
|
||||
|
||||
</#if>
|
||||
|
||||
</@tmpl.guide>
|
||||
|
||||
<#macro showFeatures features>
|
||||
[cols="1,3",role="features"]
|
||||
|===
|
||||
<#list features as feature>
|
||||
|
||||
|[.features-name]#${feature.name}#
|
||||
|[.features-description]#${feature.description}#
|
||||
[.features-name]#${feature.name}#::
|
||||
[.features-description]#${feature.description}#
|
||||
</#list>
|
||||
|===
|
||||
</#macro>
|
Loading…
Reference in a new issue