From 8d7822a32835d0ca77557044a2464ff8819aea23 Mon Sep 17 00:00:00 2001 From: Josh Date: Fri, 8 Mar 2024 10:30:10 -0500 Subject: [PATCH] fix(dev): Eliminate duplicate version string from HTML title Signed-off-by: Josh --- developer_manual/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/developer_manual/conf.py b/developer_manual/conf.py index a0fa8cfb0..bcc58bb1e 100644 --- a/developer_manual/conf.py +++ b/developer_manual/conf.py @@ -44,7 +44,7 @@ source_suffix = '.rst' master_doc = 'index' # General information about the project. -project = u'Nextcloud %s Developer Manual' % (version) +#project = u'Nextcloud %s Developer Manual' % (version) #copyright = u'2012-2017, The Nextcloud developers' # The version info for the project you're documenting, acts as replacement for @@ -109,7 +109,7 @@ html_theme_path = ['../_shared_assets/themes'] # } # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". -#html_title = None +html_title = "%s Developer Manual" % (project) # A shorter title for the navigation bar. Default is the same as html_title. html_short_title = "Developer Manual"