diff options
author | Alan Pearce | 2024-04-16 19:55:21 +0200 |
---|---|---|
committer | Alan Pearce | 2024-04-16 20:49:31 +0200 |
commit | 00557c355c12458e65ae5cd9e0fa5ebfba229b3a (patch) | |
tree | 256ccd2b42d18727f880f4c2afc2bd0c4f8d263b /cmd | |
parent | aa2ac7ea0c3c72c03cf6df51e04c0f149654777e (diff) | |
download | website-00557c355c12458e65ae5cd9e0fa5ebfba229b3a.tar.lz website-00557c355c12458e65ae5cd9e0fa5ebfba229b3a.tar.zst website-00557c355c12458e65ae5cd9e0fa5ebfba229b3a.zip |
rename variable
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/build/main.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/build/main.go b/cmd/build/main.go index ad905fd..5e19517 100644 --- a/cmd/build/main.go +++ b/cmd/build/main.go @@ -77,7 +77,7 @@ func readPosts(root string, inputDir string, outputDir string) ([]Post, Tags, er } 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 @@ func readPosts(root string, inputDir string, outputDir string) ([]Post, Tags, er } 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{ |