Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 16 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ def set_rst_settings(app):


def setup(app):
app.setup_extension("sphinxcontrib.jquery")

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

did you check whether we use jquery somewhere?

app.add_css_file("css/borg.css")
app.connect("builder-inited", set_rst_settings)

Expand Down Expand Up @@ -156,7 +155,16 @@ def setup(app):
smartquotes_action = "qe" # no D in there means "do not transform -- and ---"

# Custom sidebar templates, maps document names to template names.
html_sidebars = {"**": ["logo-text.html", "versionselector.html", "searchbox.html", "downloads.html", "globaltoc.html"]}

html_sidebars = {
"**": [
"logo-text.html",
"versionselector.html",
"searchbox.html",
"downloads.html",
"globaltoc.html",
]
}

# Additional templates that should be rendered to pages, maps page names to
# template names.
Expand Down Expand Up @@ -248,4 +256,9 @@ def setup(app):
"guzzle_sphinx_theme", # register the theme as an extension to generate a sitemap.xml
]

extlinks = {"issue": ("https://github.com/borgbackup/borg/issues/%s", "#%s")}
extlinks = {
"issue": (
"https://github.com/borgbackup/borg/issues/%s",
"#%s",
)
}
Loading