From aa299d9c66ee77c3c2bdcc562bf4d5ca483f95ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Amy=20de=20Buitl=C3=A9ir?= Date: Sun, 3 Dec 2023 20:07:46 +0000 Subject: [PATCH] added spellcheck --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile b/Makefile index e4e638c..163c6ad 100644 --- a/Makefile +++ b/Makefile @@ -52,3 +52,10 @@ $(PDF_FILE) : $(ADOC_FILES) clean : > rm -rf $(HTML_FILE) $(PDF_FILE) > find source -name '*-generated.adoc' -delete + +.PHONY: spellcheck +spellcheck : +> cat index.html | aspell --lang=en_IE --encoding=utf-8 --add-extra-dicts=./wordlist --mode=html list | sort -u + +# dictionary/en_book.rws : wordlist +# > aspell --lang=en create master ./$@ < $<