diff options
author | Alan Pearce | 2024-05-22 18:03:22 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-22 18:03:22 +0200 |
commit | ea098ab11740fe4783694ff0122738b30e0c342f (patch) | |
tree | bcd50fdb6fc7ce9730c758f709aa6bf29a763ea9 /internal/builder/posts.go | |
parent | aef028263229d8acda28b8e657413f7e9c187833 (diff) | |
download | website-ea098ab11740fe4783694ff0122738b30e0c342f.tar.lz website-ea098ab11740fe4783694ff0122738b30e0c342f.tar.zst website-ea098ab11740fe4783694ff0122738b30e0c342f.zip |
refactor: lint with golangci-lint
Diffstat (limited to 'internal/builder/posts.go')
-rw-r--r-- | internal/builder/posts.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/builder/posts.go b/internal/builder/posts.go index 954e259..cfe4e6f 100644 --- a/internal/builder/posts.go +++ b/internal/builder/posts.go @@ -73,6 +73,7 @@ func renderMarkdown(content []byte) (string, error) { if err := markdown.Convert(content, &buf); err != nil { return "", errors.WithMessage(err, "could not convert markdown content") } + return buf.String(), nil } @@ -121,5 +122,6 @@ func readPosts(root string, inputDir string, outputDir string) ([]Post, Tags, er slices.SortFunc(posts, func(a, b Post) int { return b.Date.Compare(a.Date) }) + return posts, tags, nil } |