We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8052dc commit 05e2e20Copy full SHA for 05e2e20
src/main/java/org/keycloak/webbuilder/utils/AsciiDoctor.java
@@ -88,6 +88,11 @@ public void init(Context context) {
88
globalAttributes = new HashMap<>();
89
globalAttributes.put("version", context.versions().getLatest().getVersion());
90
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");
96
}
97
98
public void close() {
0 commit comments