Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jsta committed Dec 18, 2024
1 parent adcad47 commit 89113fa
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:: <s5defs.txt>
"""
"""

0 comments on commit 89113fa

Please sign in to comment.