diff options
author | alyx <alyx@aleteoryx.me> | 2023-12-24 18:52:17 -0500 |
---|---|---|
committer | alyx <alyx@aleteoryx.me> | 2023-12-24 18:52:17 -0500 |
commit | 8786ac439b00772235f107b2f98456e2dffc69de (patch) | |
tree | 4c509ed54db4b0f9ad213621121eb714edbfd7b9 /docs/conf.py | |
parent | defde6070677e806c40d5891543848fcb2001ef5 (diff) | |
download | bbss.py-master.tar.gz bbss.py-master.tar.bz2 bbss.py-master.zip |
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 |