Skip to content

Commit

Permalink
Replace quotes with double quotes in Sphinx config
Browse files Browse the repository at this point in the history
  • Loading branch information
SkypLabs committed Mar 13, 2024
1 parent fcc52ff commit 8739ee1
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,43 +10,43 @@
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = 'ProbeQuest'
copyright = '2022, Paul-Emmanuel Raoul'
author = 'Paul-Emmanuel Raoul'
project = "ProbeQuest"
copyright = "2022, Paul-Emmanuel Raoul"
author = "Paul-Emmanuel Raoul"

release = VERSION

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.todo',
'sphinx.ext.viewcode',
'sphinxarg.ext',
'sphinxcontrib.seqdiag',
"sphinx.ext.autodoc",
"sphinx.ext.todo",
"sphinx.ext.viewcode",
"sphinxarg.ext",
"sphinxcontrib.seqdiag",
]

templates_path = ['_templates']
templates_path = ["_templates"]

master_doc = 'index'
master_doc = "index"

exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]

# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output

html_theme = 'sphinx_rtd_theme'
html_theme = "sphinx_rtd_theme"

html_static_path = ['_static']
html_static_path = ["_static"]

html_context = {
'conf_py_path': '/docs/',
'display_github': True,
'github_user': 'SkypLabs',
'github_repo': 'probequest',
'github_version': 'develop',
"plausible_domain": 'probequest.skyplabs.net',
"conf_py_path": "/docs/",
"display_github": True,
"github_user": "SkypLabs",
"github_repo": "probequest",
"github_version": "develop",
"plausible_domain": "probequest.skyplabs.net",
}

# -- Extension configuration -------------------------------------------------
Expand All @@ -59,4 +59,4 @@
# -- Options for sphinxcontrib-seqdiag extension -----------------------------
# http://blockdiag.com/en/seqdiag/sphinxcontrib.html

seqdiag_fontpath = '/usr/share/fonts/truetype/ipafont/ipagp.ttf'
seqdiag_fontpath = "/usr/share/fonts/truetype/ipafont/ipagp.ttf"

0 comments on commit 8739ee1

Please sign in to comment.