Skip to content

Commit 05e2e20

Browse files
committed
Add missing attribute to render TOC in Keycloak HA Introduction
Closes #454 Signed-off-by: Alexander Schwartz <[email protected]>
1 parent f8052dc commit 05e2e20

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/main/java/org/keycloak/webbuilder/utils/AsciiDoctor.java

+5
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,11 @@ public void init(Context context) {
8888
globalAttributes = new HashMap<>();
8989
globalAttributes.put("version", context.versions().getLatest().getVersion());
9090
globalAttributes.put("majorMinorVersion", context.versions().getLatest().getVersionShorter());
91+
92+
// The attribute 'project_community' was missing in 24.0.2. Will be added in 25.x in the attributes.adoc,
93+
// and it can then be removed here.
94+
// https://github.com/keycloak/keycloak/issues/28215
95+
globalAttributes.put("project_community", "true");
9196
}
9297

9398
public void close() {

0 commit comments

Comments
 (0)