From 9ae8d879080632def11a9539a77c0ddf3281c328 Mon Sep 17 00:00:00 2001 From: Rohan Kumar Date: Mon, 27 Nov 2023 19:48:07 -0800 Subject: [PATCH] Fix build info hyperlink escaping --- layouts/shortcodes/build-info.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/shortcodes/build-info.html b/layouts/shortcodes/build-info.html index f738155..ab8a94e 100644 --- a/layouts/shortcodes/build-info.html +++ b/layouts/shortcodes/build-info.html @@ -1,7 +1,7 @@ {{- $now := now -}} {{- $buildCtx := "on my workstation" -}} {{- with getenv "JOB_URL" -}} - {{- $buildCtx = `on builds.sr.ht` | safeHTML -}} + {{- $buildCtx = printf `on builds.sr.ht` . | safeHTML -}} {{- end -}}

This site was last built on