diff --git a/docs/source/conf.py b/docs/source/conf.py index ec55f90..38e8246 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -6,34 +6,35 @@ # -- Project information ----------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information -project = 'hpdocs' -copyright = '2023, Jon Schwenk' -author = 'Jon Schwenk' -release = '0.1' +project = "hpdocs" +copyright = "2023, Jon Schwenk" +author = "Jon Schwenk" +release = "0.1" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration extensions = [] -templates_path = ['_templates'] +templates_path = ["_templates"] exclude_patterns = [] - # -- Options for HTML output ------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output -html_theme = 'sphinx_rtd_theme' -html_static_path = ['_static'] +html_theme = "sphinx_rtd_theme" +html_static_path = ["_static"] + # Custom css (used for disabling table scrollbar) def setup(app): - app.add_css_file('custom.css') - app.add_css_file('s4defs-roles.css') + app.add_css_file("custom.css") + app.add_css_file("s4defs-roles.css") + # For colored text rst_prolog = """ .. include:: -""" \ No newline at end of file +"""