Browse Source

Fix local doc generation

pull/10109/head
dolfies 3 years ago
parent
commit
1c5157346c
  1. 6
      docs/conf.py

6
docs/conf.py

@ -81,7 +81,7 @@ master_doc = 'index'
# General information about the project.
project = 'discord.py-self'
#copyright = ''
copyright = '2015-present, Rapptz and 2021-present, Dolfies'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@ -252,7 +252,7 @@ html_static_path = ['_static']
html_show_sphinx = False
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
html_show_copyright = False
#html_show_copyright = True
# If true, an OpenSearch description file will be output, and all pages will
# contain a <link> tag referring to it. The value of this option must be the
@ -274,7 +274,7 @@ html_show_copyright = False
# The name of a javascript file (relative to the configuration directory) that
# implements a search results scorer. If empty, the default will be used.
html_search_scorer = '_static/scorer.js'
html_search_scorer = os.path.join(os.path.dirname(__file__), '_static/scorer.js')
html_js_files = [
'custom.js',

Loading…
Cancel
Save