diff options
Diffstat (limited to 'docs/conf.py')
-rw-r--r-- | docs/conf.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py index 760ad19..0ac5971 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -29,11 +29,18 @@ exclude_patterns = ['*~'] # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output html_theme = 'sphinxdoc' +html_theme_options = { + 'sidebarwidth': 300 +} + html_static_path = ['_static'] python_display_short_literal_types = True -intersphinx_mapping = {'python': ('https://docs.python.org/3', None)} +intersphinx_mapping = { + 'python': ('https://docs.python.org/3', None), + 'requests': ('https://requests.readthedocs.io/en/latest/', None) +} doctest_global_setup = """ import bbss |