Lines Matching +full:aspell +full:- +full:en
4 mkdocs build --strict
5 if [ $? -ne 0 ]; then
9 aspell --lang=en create master ./tmp <.spell-dict
10 if [ $? -ne 0 ]; then
17 for file in $(find site/ -type f -name "*.html"); do
18 words=$(aspell list --lang=en --mode=html --add-html-skip=code --extra-dicts=./tmp <$file)
20 uniquewords=$(tr ' ' '\n' <<< "${words[@]}" | sort -u | tr '\n' ' ')
23 echo "-----------------------------------------------------------------"
27 echo "-----------------------------------------------------------------"
30 rm -f ./tmp
31 rm -rf site
33 if [ $fails -gt 0 ]; then