From 972ccbd927bc818cd45670603a82fd6999f0a184 Mon Sep 17 00:00:00 2001 From: Hubert Chathi Date: Fri, 27 May 2022 18:03:55 -0400 Subject: [PATCH] use HTML in the added-in/changed-in shortcodes --- layouts/shortcodes/added-in.html | 6 +++--- layouts/shortcodes/changed-in.html | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/layouts/shortcodes/added-in.html b/layouts/shortcodes/added-in.html index 4113d922..149be685 100644 --- a/layouts/shortcodes/added-in.html +++ b/layouts/shortcodes/added-in.html @@ -2,7 +2,7 @@ {{ $this := .Params.this }} {{ if $this }} - **[New in this version]** + [New in this version] {{ else }} - **[Added in `v{{ $ver }}`]** -{{ end }} {{/* Do not leave an empty line at the end of this file otherwise the inline behaviour breaks. */}} \ No newline at end of file + [Added in v{{ $ver }}] +{{ end }} {{/* Do not leave an empty line at the end of this file otherwise the inline behaviour breaks. */}} diff --git a/layouts/shortcodes/changed-in.html b/layouts/shortcodes/changed-in.html index 0eb35faa..8da2559a 100644 --- a/layouts/shortcodes/changed-in.html +++ b/layouts/shortcodes/changed-in.html @@ -2,7 +2,7 @@ {{ $this := .Params.this }} {{ if $this }} - **[Changed in this version]** + [Changed in this version] {{ else }} - **[Changed in `v{{ $ver }}`]** -{{ end }} {{/* Do not leave an empty line at the end of this file otherwise the inline behaviour breaks. */}} \ No newline at end of file + [Changed in v{{ $ver }}] +{{ end }} {{/* Do not leave an empty line at the end of this file otherwise the inline behaviour breaks. */}}