@redpanda-data/docs-extensions-and-macros 3.3.2 → 3.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -175,7 +175,7 @@ function generateIndex (playbook, contentCatalog, { indexLatestOnly = false, exc
|
|
|
175
175
|
.replace(/\s+/g, ' ')
|
|
176
176
|
.trim();
|
|
177
177
|
|
|
178
|
-
var tag = `${component.title} ${version ? 'v' + version : ''}
|
|
178
|
+
var tag = `${component.title} ${version ? 'v' + version : ''}`.trim();
|
|
179
179
|
var indexItem;
|
|
180
180
|
const deployment = page.asciidoc?.attributes['env-kubernetes'] ? 'Kubernetes' : page.asciidoc?.attributes['env-linux'] ? 'Linux' : page.asciidoc?.attributes['env-docker'] ? 'Docker' : page.asciidoc?.attributes['page-cloud'] ? 'Redpanda Cloud' : ''
|
|
181
181
|
|