From 9a3bb1623676bd72fc1fa4b4ed6a6e556405482b Mon Sep 17 00:00:00 2001 From: Heiko Schaefer Date: Mon, 9 Oct 2023 12:48:25 +0200 Subject: [PATCH] sphinx conf: more minimalistic output --- book/source/conf.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/book/source/conf.py b/book/source/conf.py index c451430..c734f9d 100644 --- a/book/source/conf.py +++ b/book/source/conf.py @@ -29,8 +29,13 @@ exclude_patterns = [] html_theme = 'alabaster' html_static_path = ['_static'] +html_show_sphinx = False +html_show_copyright = False +html_show_sourcelink = False + # https://github.com/sphinx-doc/alabaster/blob/0.x/alabaster/theme.conf html_theme_options = { 'code_font_size': '9pt', 'show_relbars': 'yes', + 'show_powered_by': False, }