Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
40 lines
1.3 KiB
Python
40 lines
1.3 KiB
Python
# Configuration file for the Sphinx documentation builder.
|
|
#
|
|
# For the full list of built-in configuration values, see the documentation:
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
|
|
|
# -- Project information -----------------------------------------------------
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
|
|
|
project = "XDG Desktop Portal"
|
|
copyright = "2023-2025, XDG Desktop Portal authors"
|
|
author = "XDG Desktop Portal authors"
|
|
|
|
# -- General configuration ---------------------------------------------------
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
|
html_favicon = "favicon.ico"
|
|
|
|
extensions = [
|
|
"sphinxext.opengraph",
|
|
"sphinx_copybutton",
|
|
]
|
|
|
|
templates_path = ["_templates"]
|
|
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 = "furo"
|
|
# add custom files that are stored in _static
|
|
html_css_files = ["xdg.css"]
|
|
html_static_path = ["_static"]
|
|
|
|
# -- Options for OpenGraph ---------------------------------------------------
|
|
|
|
ogp_site_url = "https://flatpak.github.io/xdg-desktop-portal/docs/"
|
|
ogp_image = "_static/card.png"
|
|
|
|
html_permalinks_icon = "🔗"
|