Add spell checking support

draft-2
Olaf Meeuwissen 2020-02-13 21:19:34 +09:00
rodzic f36d138141
commit bd38480d9f
3 zmienionych plików z 7 dodań i 0 usunięć

Wyświetl plik

@ -9,6 +9,7 @@ test:
before_script:
- apt-get update -qq
- apt-get install -qqy --no-install-recommends
python3-enchant
python3-setuptools
python3-wheel
- pip3 --quiet install -r requirements.txt
@ -17,6 +18,7 @@ test:
# sphinx-build invocations.
- unset CI
- sphinx-build -M linkcheck . _build/
- sphinx-build -M spelling . _build/ -W --keep-going
pages:
stage: publish

Wyświetl plik

@ -29,6 +29,7 @@ release = version
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
'sphinxcontrib.spelling'
]
# Unconditional addition breaks 'sphinx-build'. Versioning support is
@ -57,6 +58,9 @@ today_fmt = '2008-05-03'
highlight_language = 'c'
spelling_lang = 'en-US'
spelling_word_list_filename = 'wordlist.txt'
# -- Options for HTML output -------------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for

Wyświetl plik

@ -1,2 +1,3 @@
sphinx_rtd_theme
sphinx-versions
sphinxcontrib-spelling