diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-06 20:31:00 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-06 20:31:00 -0400 |
commit | 3470b8861298b7e2e04f8f49befe98598c5a3b2a (patch) | |
tree | 81d63f9ac6e89d4ccc61d9afc6cf3d1054f878f6 /docs/conf.py | |
parent | 901aa9ed176507071198e84978891c69cc6e9d3b (diff) | |
parent | 34975b52e769514b44ee8c13147a22961e68e7a7 (diff) | |
download | cmd2-git-3470b8861298b7e2e04f8f49befe98598c5a3b2a.tar.gz |
Merge branch 'master' into auto_completer_refactor
Diffstat (limited to 'docs/conf.py')
-rw-r--r-- | docs/conf.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/conf.py b/docs/conf.py index f22a117d..5463d0bb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -37,6 +37,7 @@ sys.path.insert(0, os.path.abspath('..')) # 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.autosectionlabel', 'sphinx.ext.intersphinx', 'sphinx.ext.doctest', 'sphinx.ext.todo'] @@ -55,8 +56,8 @@ master_doc = 'index' # General information about the project. project = 'cmd2' -copyright = '2010-2018, Catherine Devlin and Todd Leonhardt' -author = 'Catherine Devlin and Todd Leonhardt' +copyright = '2010-2019, cmd2 contributors' +author = 'cmd2 contributors' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -85,6 +86,8 @@ pygments_style = 'sphinx' # If true, `todo` and `todoList` produce output, else they produce nothing. todo_include_todos = False +# configure autosectionlabel extension +autosectionlabel_prefix_document = True # -- Options for HTML output --------------------------------------------------- |