From 4e6f692ac11db53b1c1ebf8955b9cde201b66ada Mon Sep 17 00:00:00 2001 From: David Eisinger Date: Wed, 11 Dec 2024 16:04:16 -0500 Subject: [PATCH] Fix srht line #s --- content/journal/spellcheck-your-hugo-site-with-cspell/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ---