all repos — website @ b1677cfd7cb2a30afaf581d4477e9c00d62a73c2

My website

fix post URL generation
Alan Pearce alan@alanpearce.eu
Sat, 25 Jan 2025 00:04:17 +0100
commit

b1677cfd7cb2a30afaf581d4477e9c00d62a73c2

parent

f31f62dc9b2036bddf91dc9f99479773347acfaf

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M internal/content/posts.gointernal/content/posts.go
@@ -99,8 +99,8 @@ for _, f := range files { 		fn := f.Name()
 		if !f.IsDir() && path.Ext(fn) == ".md" {
 			output := path.Join(config.InputDir, outputReplacer.Replace(fn))
-			url := urlReplacer.Replace(strings.TrimPrefix("/", fn))
-			log.Debug("reading post", "post", fn)
+			url := path.Join("/", config.InputDir, urlReplacer.Replace(fn)) + "/"
+			log.Debug("reading post", "post", fn, "url", url)
 			matter, content, err := GetPost(path.Join(subdir, fn))
 			if err != nil {
 				return nil, nil, err