aboutsummaryrefslogtreecommitdiff
path: root/spelling/check-spelling.sh
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2019-12-29 21:32:16 -0300
committerEuAndreh <eu@euandre.org>2019-12-29 21:32:16 -0300
commit22e09a204a376adbe762bfd52a59745fc1f1ec7d (patch)
treeabf99bb7f1577e45236f6a999ef5c4d3d3e920ba /spelling/check-spelling.sh
parentpastebin: Add raku type snippet (diff)
downloadeuandre.org-22e09a204a376adbe762bfd52a59745fc1f1ec7d.tar.gz
euandre.org-22e09a204a376adbe762bfd52a59745fc1f1ec7d.tar.xz
spelling/check-spelling.sh: Add fr language
Diffstat (limited to '')
-rwxr-xr-xspelling/check-spelling.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/spelling/check-spelling.sh b/spelling/check-spelling.sh
index 5f7b450..60ae5df 100755
--- a/spelling/check-spelling.sh
+++ b/spelling/check-spelling.sh
@@ -22,7 +22,7 @@ cat spelling/international.dic.txt spelling/en_US.dic.txt spelling/en_US.aff.txt
check() {
html="$1"
echo "$1"
- hunspell -l -p dicts.txt -d en_US -i utf-8 "$html" | tee -a spelling.txt
+ hunspell -l -p dicts.txt -d fr_FR -d en_US -i utf-8 "$html" | tee -a spelling.txt
}
export -f check
find "${HTML_DIR}" -type f -name '*.html' -print0 | xargs -0 -I{} bash -c "check {}" \;