fix post URL generation
Alan Pearce alan@alanpearce.eu
Sat, 25 Jan 2025 00:04:17 +0100
1 files changed, 2 insertions(+), 2 deletions(-)
jump to
M internal/content/posts.go → internal/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