From ea098ab11740fe4783694ff0122738b30e0c342f Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Wed, 22 May 2024 18:03:22 +0200 Subject: refactor: lint with golangci-lint --- internal/builder/posts.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'internal/builder/posts.go') 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 } -- cgit 1.4.1