From a801f35029ef9b055ca6420584332c16f67e7aee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Sun, 13 Oct 2024 11:58:25 +0200 Subject: [PATCH] Remove span element from added-in and changed-in shortcodes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It is unnecessary and has no effect. Signed-off-by: Kévin Commaille --- layouts/shortcodes/added-in.html | 4 ++-- layouts/shortcodes/changed-in.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/layouts/shortcodes/added-in.html b/layouts/shortcodes/added-in.html index 9f18809d..855810e9 100644 --- a/layouts/shortcodes/added-in.html +++ b/layouts/shortcodes/added-in.html @@ -2,8 +2,8 @@ {{- with page.Params.version -}} {{- if eq $ver . -}} - [New in this version] + [New in this version] {{- end -}} {{- else -}} - [Added in v{{ $ver }}] + [Added in v{{ $ver }}] {{- end -}} diff --git a/layouts/shortcodes/changed-in.html b/layouts/shortcodes/changed-in.html index 17c1c787..6e4716e0 100644 --- a/layouts/shortcodes/changed-in.html +++ b/layouts/shortcodes/changed-in.html @@ -2,8 +2,8 @@ {{- with page.Params.version -}} {{- if eq $ver . -}} - [Changed in this version] + [Changed in this version] {{- end -}} {{- else -}} - [Changed in v{{ $ver }}] + [Changed in v{{ $ver }}] {{- end -}}