Change the list features to the format of a description list (#17237)

CIAM-5050
This commit is contained in:
Alexander Schwartz 2023-02-27 08:36:29 +01:00 committed by GitHub
parent 923a321a55
commit 8abe984844
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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>