diff options
author | Nicholas Johnson <mail@nicholasjohnson.ch> | 2024-11-08 00:00:00 +0000 |
---|---|---|
committer | Nicholas Johnson <mail@nicholasjohnson.ch> | 2024-11-08 00:00:00 +0000 |
commit | 3b77b61bf662efe71c7f75e73a2d6fae0e3c8c8b74b05f036809b0913785a432 (patch) | |
tree | b3f66209599653522324292d79461c5461055dc9f9113ca3d75ee881d7344bd0 /layouts/index.gemini_atom.xml | |
parent | 072a58b0953ae2c841b14a7f7f5f7786f30234d5020f10ae9afc591034756b83 (diff) | |
download | hugo-theme-journal-3b77b61bf662efe71c7f75e73a2d6fae0e3c8c8b74b05f036809b0913785a432.tar.gz hugo-theme-journal-3b77b61bf662efe71c7f75e73a2d6fae0e3c8c8b74b05f036809b0913785a432.zip |
Replace replaceRE with TrimSuffix for readability
Diffstat (limited to 'layouts/index.gemini_atom.xml')
-rw-r--r-- | layouts/index.gemini_atom.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/layouts/index.gemini_atom.xml b/layouts/index.gemini_atom.xml index 6eb6b8e..446f9f8 100644 --- a/layouts/index.gemini_atom.xml +++ b/layouts/index.gemini_atom.xml @@ -32,11 +32,11 @@ {{ "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" | safeHTML }} <feed xmlns="http://www.w3.org/2005/Atom"> - <id>{{ .Permalink | replaceRE `index.gmi$` "" }}</id> + <id>{{ .Permalink | strings.TrimSuffix "index.gmi" }}</id> <title>{{ .Site.Title }}</title> <updated>{{ .Date.Format "2006-01-02T15:04:05-0700" | safeHTML }}</updated> <link href="{{ .Permalink | replaceRE `index.gmi$` "atom.xml" | safeURL }}" rel="self" /> - <link href="{{ .Permalink | replaceRE `index.gmi$` "" | safeURL }}" rel="alternate" /> + <link href="{{ .Permalink | strings.TrimSuffix "index.gmi" | safeURL }}" rel="alternate" /> {{- with $authorName }} <author> <name>{{ . }}</name> @@ -47,9 +47,9 @@ <rights type="html">{{ replace .Site.Copyright "{currentYear}" (now.Format "2006") }}</rights> <subtitle>{{ .Site.Params.Description }}</subtitle>{{ range first .Site.Config.Services.RSS.Limit .Site.RegularPages }} <entry> - <id>{{ .Permalink | replaceRE `index.gmi$` "" }}</id> + <id>{{ .Permalink | strings.TrimSuffix "index.gmi" }}</id> <title>{{ .Title }}</title> <updated>{{ .Date.Format "2006-01-02T15:04:05-0700" | safeHTML }}</updated> - <link href="{{ .Permalink | replaceRE `index.gmi$` "" | safeURL }}" rel="alternate" /> + <link href="{{ .Permalink | strings.TrimSuffix "index.gmi" | safeURL }}" rel="alternate" /> </entry>{{ end }} </feed> |