diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-29 10:56:26 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-29 10:56:26 -0500 |
commit | 494fd347a542ab94112350da49bc91b8b1076578 (patch) | |
tree | 8129f656c362eb8fffbfd8d419be9eb4e032582e /doc/conf.py | |
parent | 0405747fb42176d4448a37f5eecb6086b88341ab (diff) | |
download | python-coveragepy-git-494fd347a542ab94112350da49bc91b8b1076578.tar.gz |
Spelling for the docs also
Diffstat (limited to 'doc/conf.py')
-rw-r--r-- | doc/conf.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/doc/conf.py b/doc/conf.py index 16f566f0..2f1faf8d 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -24,7 +24,13 @@ sys.path.append(os.path.join(os.path.dirname(__file__), "_ext")) # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. -extensions = ['sphinx.ext.autodoc', 'sphinx.ext.todo', 'sphinx.ext.ifconfig', 'px_xlator'] +extensions = [ + 'sphinx.ext.autodoc', + 'sphinx.ext.todo', + 'sphinx.ext.ifconfig', + 'sphinxcontrib.spelling', + 'px_xlator', +] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] @@ -167,6 +173,10 @@ html_show_sourcelink = False # Output file base name for HTML help builder. htmlhelp_basename = 'coveragepydoc' +# -- Spelling --- + +spelling_word_list_filename = 'dict.txt' +spelling_show_suggestions = False # -- Options for LaTeX output -------------------------------------------------- |