From 992abd2fc7f9a7082741c24630c2d9e2116abee6 Mon Sep 17 00:00:00 2001 From: Alan Dooley Date: Thu, 10 Oct 2024 13:11:44 +0100 Subject: [PATCH] Update psuedo-variable shortcodes (#6632) Update psuedo-variable shortcodes This commit fixes an issue with three shortcodes in the documentation website: they are used as psuedo-variables for the sake of version management. Newline characters were added to them erroneously, which was causing them to break tables, and may have also affected the formatting and rendering of documentation elsewhere. --- site/layouts/shortcodes/nic-helm-version.html | 2 +- site/layouts/shortcodes/nic-operator-version.html | 2 +- site/layouts/shortcodes/nic-version.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/site/layouts/shortcodes/nic-helm-version.html b/site/layouts/shortcodes/nic-helm-version.html index 88c5fb891d..e21e727f96 100644 --- a/site/layouts/shortcodes/nic-helm-version.html +++ b/site/layouts/shortcodes/nic-helm-version.html @@ -1 +1 @@ -1.4.0 +1.4.0 \ No newline at end of file diff --git a/site/layouts/shortcodes/nic-operator-version.html b/site/layouts/shortcodes/nic-operator-version.html index 197c4d5c2d..9183195ace 100644 --- a/site/layouts/shortcodes/nic-operator-version.html +++ b/site/layouts/shortcodes/nic-operator-version.html @@ -1 +1 @@ -2.4.0 +2.4.0 \ No newline at end of file diff --git a/site/layouts/shortcodes/nic-version.html b/site/layouts/shortcodes/nic-version.html index 7c69a55dbb..240bba9069 100644 --- a/site/layouts/shortcodes/nic-version.html +++ b/site/layouts/shortcodes/nic-version.html @@ -1 +1 @@ -3.7.0 +3.7.0 \ No newline at end of file