From d3b1879ca01ac79baf8b98b682925ed66d277e7f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Jul 2024 10:38:46 +0000 Subject: [PATCH] Sync demo content --- conf.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/conf.py b/conf.py index 430f82b..cd49e88 100644 --- a/conf.py +++ b/conf.py @@ -17,6 +17,7 @@ # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration extensions = [ + "sphinx.ext.intersphinx", "sphinx_design", "myst_parser", ] @@ -24,6 +25,12 @@ templates_path = ["_templates"] exclude_patterns = ["_build", "Thumbs.db", ".DS_Store", "env", ".tox", "README.md"] +intersphinx_mapping = { + "python": ("https://docs.python.org/3/", None), + "sphinx": ("https://www.sphinx-doc.org/en/master", None), +} + + linkcheck_allowed_redirects = { # All HTTP redirections from the source URI to the canonical URI will be treated as "working". r"https://sphinx-doc\.org/.*": r"https://sphinx-doc\.org/en/master/.*"