From 0b770293670e68740942aefb7ea3db473328f0f1 Mon Sep 17 00:00:00 2001 From: Josh Date: Fri, 8 Mar 2024 10:31:55 -0500 Subject: [PATCH] fix(user): Eliminate duplicate version string from HTML title Signed-off-by: Josh --- user_manual/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user_manual/conf.py b/user_manual/conf.py index 5d0b341fa..3f6003eba 100644 --- a/user_manual/conf.py +++ b/user_manual/conf.py @@ -53,7 +53,7 @@ master_doc = 'contents' #release = '12' # General information about the project. -project = u'Nextcloud %s User Manual' % (version) +#project = u'Nextcloud %s User Manual' % (version) #copyright = u'2012-2017, The Nextcloud developers' # The language for content autogenerated by Sphinx. Refer to documentation @@ -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 User Manual" % (project) # A shorter title for the navigation bar. Default is the same as html_title. html_short_title = "User Manual"