all repos — website @ 00557c355c12458e65ae5cd9e0fa5ebfba229b3a

My website

rename variable
Alan Pearce alan@alanpearce.eu
Tue, 16 Apr 2024 19:55:21 +0200
commit

00557c355c12458e65ae5cd9e0fa5ebfba229b3a

parent

aa2ac7ea0c3c72c03cf6df51e04c0f149654777e

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

jump to
M cmd/build/main.gocmd/build/main.go
@@ -77,7 +77,7 @@ return nil, nil, errors.WithMessagef(err, "could not read post directory %s", subdir) 	}
 	outputReplacer := strings.NewReplacer(root, outputDir, ".md", "/index.html")
 	urlReplacer := strings.NewReplacer(root, "", ".md", "/")
-	md := goldmark.New(
+	markdown := goldmark.New(
 		goldmark.WithRendererOptions(
 			html.WithUnsafe(),
 		),
@@ -102,7 +102,7 @@ tags.Add(strings.ToLower(tag)) 			}
 
 			var buf bytes.Buffer
-			if err := md.Convert(*content, &buf); err != nil {
+			if err := markdown.Convert(*content, &buf); err != nil {
 				return nil, nil, errors.WithMessage(err, "could not convert markdown content")
 			}
 			post := Post{