From 94f31cc92f7bd3a965801c1b4bcf4e45c4b3e0fd667fbdcdb328196fd4bb05f0 Mon Sep 17 00:00:00 2001 From: Nicholas Johnson Date: Fri, 16 Aug 2024 00:00:00 +0000 Subject: Substitute replace with replaceRE for correctness --- layouts/taxonomy/taxonomy.gemini_atom.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'layouts/taxonomy/taxonomy.gemini_atom.xml') diff --git a/layouts/taxonomy/taxonomy.gemini_atom.xml b/layouts/taxonomy/taxonomy.gemini_atom.xml index 52bd9f7..36df6d6 100644 --- a/layouts/taxonomy/taxonomy.gemini_atom.xml +++ b/layouts/taxonomy/taxonomy.gemini_atom.xml @@ -32,11 +32,11 @@ {{ "" | safeHTML }} - {{ replace .Permalink "https://" "gemini://" | replaceRE `(?m)index.gmi$` "" }} + {{ .Permalink | replaceRE `^https://` "gemini://" | replaceRE `(?m)index.gmi$` "" }} {{ .Site.Title }} {{ .Date.UTC.Format "2006-01-02T15:04:05Z" | safeHTML }} - - + + {{- with $authorName }} {{ . }} @@ -47,9 +47,9 @@ {{ replace .Site.Copyright "{currentYear}" (now.UTC.Format "2006") }} {{ .Site.Params.Description }}{{ range first .Site.Config.Services.RSS.Limit .Data.Pages }} - {{ replace .Permalink "https://" "gemini://" | replaceRE `(?m)index.gmi$` "" | safeURL }} + {{ .Permalink | replaceRE `^https://` "gemini://" | replaceRE `(?m)index.gmi$` "" | safeURL }} {{ .Title }} {{ .Date.UTC.Format "2006-01-02T15:04:05Z" | safeHTML }} - + {{ end }} -- cgit v1.2.3