From 32b8b9515a5314ca0ee034675e4f7d7b665b6e0f Mon Sep 17 00:00:00 2001 From: Dave Eargle Date: Mon, 11 Oct 2021 11:44:40 -0600 Subject: [PATCH] add fulltoc extension back in I like it again --- docs/_templates/globaltoc.html | 11 ----------- docs/conf.py | 9 --------- 2 files changed, 20 deletions(-) delete mode 100644 docs/_templates/globaltoc.html diff --git a/docs/_templates/globaltoc.html b/docs/_templates/globaltoc.html deleted file mode 100644 index 07028351..00000000 --- a/docs/_templates/globaltoc.html +++ /dev/null @@ -1,11 +0,0 @@ -{# - basic/globaltoc.html - ~~~~~~~~~~~~~~~~~~~~ - - Sphinx sidebar template: global table of contents. - - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. - :license: BSD, see LICENSE for details. -#} - -{{ toctree(includehidden=theme_globaltoc_includehidden, collapse=theme_globaltoc_collapse, maxdepth=theme_globaltoc_maxdepth) }} diff --git a/docs/conf.py b/docs/conf.py index 7631cda1..389f6d21 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -7,10 +7,6 @@ from kmapper import __version__ from sktda_docs_config import * -if 'sphinxcontrib.fulltoc' in extensions: - extensions.remove('sphinxcontrib.fulltoc') - - project = u"KeplerMapper" copyright = '2019-%s, Hendrik Jacob van Veen, Nathaniel Saul, David Eargle, and Sam Mangham' % time.strftime('%Y') author = u"Hendrik Jacob van Veen, Nathaniel Saul, David Eargle, and Sam Mangham" @@ -20,11 +16,6 @@ html_static_path = ["../examples/output", "_static", "notebooks/output"] -html_sidebars = { - # 'index': [ 'searchbox.html', 'githubbox.html', 'localtoc.html' ], - '**': [ 'searchbox.html', 'githubbox.html', 'globaltoc.html' ], -} - templates_path = ["_templates"] exclude_patterns.append("_templates") # exclude_patterns.append('generated')