You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# mkdocs.ymlplugins:
- search
- spellcheck:
backends: # the backends you want to use
- symspellpy # as strings
- codespell: # or nested configsdictionaries: [clear, rare]# known_words can also be a list of wordsknown_words: known_words.txt# ignore words in <code> tagsignore_code: yes# minimum length of words to considermin_length: 2# maximum number of capital letters in a wordmax_capital: 1# keep unicode charactersallow_unicode: no# skip files entirely (supports Unix shell-style wildcards)skip_files:
- credits.md
- coverage.md
- reference/*# whether to only check in strict modestrict_only: yes
By default, the symspellpy backend is used.
Once your configuration is ready, just run mkdocs build -s to check the spelling inside your pages.
codespell
The builtin dictionaries are:
clear for unambiguous errors
rare for rare (but valid) words that are likely to be errors
informal for making informal words more formal
usage for replacing phrasing with recommended terms
code for words from code and/or mathematics that are likely
to be typos in other contexts (such as uint)
names for valid proper names that might be typos
en-GB_to_en-US for corrections from en-GB to en-US