diff --git a/content/journal/spellcheck-your-hugo-site-with-cspell/index.md b/content/journal/spellcheck-your-hugo-site-with-cspell/index.md index a90afab..e292913 100644 --- a/content/journal/spellcheck-your-hugo-site-with-cspell/index.md +++ b/content/journal/spellcheck-your-hugo-site-with-cspell/index.md @@ -139,7 +139,7 @@ sort -o .dictionary .dictionary With all this stuff set up, it's dead simple to add spellchecking to the build pipeline to ensure you never publish misspellings. As long as your job runner has `npx` available, you can just run the same `npx cspell content/**/*.md` command you've been running locally in a build step. [Here's where I do it.][8] -[8]: https://git.sr.ht/~dce/davideisinger.com/tree/main/item/.build.yml#L23-24 +[8]: https://git.sr.ht/~dce/davideisinger.com/tree/main/item/.build.yml#L27-29 ---