From d06e81e1c23fa2cfeb190edc10a6fb96dc1b854e Mon Sep 17 00:00:00 2001 From: baldurk Date: Sun, 15 May 2016 18:53:41 +0200 Subject: [PATCH] Tweak html display - better title, no source links --- docs/conf.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index d81b8bbbd..a978fffa3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -121,7 +121,7 @@ html_theme = 'alabaster' # The name for this set of Sphinx documents. # " v documentation" by default. -#html_title = 'RenderDoc v0.29' +html_title = 'RenderDoc documentation' # A shorter title for the navigation bar. Default is the same as html_title. #html_short_title = None @@ -291,3 +291,8 @@ import sphinx_rtd_theme html_theme = "sphinx_rtd_theme" html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] + +html_context = { + 'show_source': False, + 'html_show_sourcelink': False, +}