From d537e4be4889ad6c457cd9e374ba008e8048f182 Mon Sep 17 00:00:00 2001 From: George Cushen Date: Thu, 2 Nov 2023 17:49:54 +0000 Subject: [PATCH] feat: add support for breaking changes in Hugo v0.120.0 See https://github.com/gohugoio/hugo/releases/tag/v0.120.0 Close #3012 --- .../layouts/partials/functions/get_event_dates.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/wowchemy-bootstrap/layouts/partials/functions/get_event_dates.html b/modules/wowchemy-bootstrap/layouts/partials/functions/get_event_dates.html index 7a3a73ebd..fd6f7e79c 100644 --- a/modules/wowchemy-bootstrap/layouts/partials/functions/get_event_dates.html +++ b/modules/wowchemy-bootstrap/layouts/partials/functions/get_event_dates.html @@ -14,4 +14,4 @@ {{/* Show end time if not all day event. */}} {{ if not .Params.all_day }}{{ $str = $str | append (time.Format site.Params.locale.time_format (time $t2)) }}{{ end }} {{ end }} -{{ return (delimit $str " ") }} +{{ return ((delimit $str " ") | safeHTML) }}