From 4134775903ccf03f8973221bd1b8c6eaf93b02b923367dd536aa79af519b6769 Mon Sep 17 00:00:00 2001 From: Nicholas Johnson Date: Thu, 6 Feb 2025 00:00:00 +0000 Subject: Remove commas from pageinfo tags list in html Spaces are more aesthetically pleasing. The Gemtext output format cannot remove the commas because then there would be no way to distinguish tags containing spaces from distinct tags. --- layouts/partials/pageinfo.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'layouts/partials') diff --git a/layouts/partials/pageinfo.html b/layouts/partials/pageinfo.html index 8879d5e..8917ea7 100644 --- a/layouts/partials/pageinfo.html +++ b/layouts/partials/pageinfo.html @@ -10,4 +10,4 @@ {{ $nonBreakingReadingTime = replace $nonBreakingReadingTime " " " " -}} {{ $nonBreakingReadingTime = replace $nonBreakingReadingTime "-" "‑" -}} -{{ emojify ":calendar:" }}  | {{ emojify ":stopwatch:" }} {{ if (.Param (lower (i18n "tags"))) }} | {{ emojify ":label:" }} {{ end }}{{ range $key, $val := (.Param (lower (i18n "tags"))) }}{{ if $key }}, {{ end }}{{ $val }}{{ end }} +{{ emojify ":calendar:" }}  | {{ emojify ":stopwatch:" }} {{ if (.Param (lower (i18n "tags"))) }} | {{ emojify ":label:" }} {{ end }}{{ range $key, $val := (.Param (lower (i18n "tags"))) }}{{ if $key }} {{ end }}{{ $val }}{{ end }} -- cgit v1.2.3