[doc] proofreading the guides, refactoring the reference.

This commit is contained in:
Romain Dorgueil
2018-01-16 06:27:25 +01:00
parent ed7887ba31
commit aa6e426768
41 changed files with 767 additions and 288 deletions

View File

@ -14,6 +14,7 @@ import bonobo
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.autosummary',
'sphinx.ext.doctest',
'sphinx.ext.intersphinx',
'sphinx.ext.todo',
@ -60,7 +61,12 @@ language = None
# This patterns also effect to html_static_path and html_extra_path
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
# The name of the Pygments (syntax highlighting) style to use.
autoclass_content = 'both'
autodoc_member_order = 'groupwise'
autodoc_default_flags =['members', 'undoc-members', 'show-inheritance', ]
add_module_names = False
pygments_style = 'sphinx'
# If true, `todo` and `todoList` produce output, else they produce nothing.