From d75588d8ee408421d9ba6788806f593ce42ade99 Mon Sep 17 00:00:00 2001 From: Loup-Garou911XD Date: Tue, 26 Mar 2024 20:06:40 +0530 Subject: [PATCH] Reapply "added intersphinx extension" This reverts commit 0301d454f86dc6d6489751db74026b1c77600f51. --- src/assets/sphinx/static/conf.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/assets/sphinx/static/conf.py b/src/assets/sphinx/static/conf.py index d8a8cbce..7dfdb1ad 100644 --- a/src/assets/sphinx/static/conf.py +++ b/src/assets/sphinx/static/conf.py @@ -71,10 +71,15 @@ release = str(sphinx_settings['buildnum']) # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. + +intersphinx_mapping = {'python': ('https://docs.python.org/3', None)} autosummary_generate = True extensions = [ 'sphinx.ext.napoleon', # https://stackoverflow.com/questions/45880348/how-to-remove-the-cause-of-an-unexpected-indentation-warning-when-generating-cod 'sphinx.ext.autodoc', + # might want to use this in future + # for linking with efro and bacommon packages + 'sphinx.ext.intersphinx', ] # Add any paths that contain templates here, relative to this directory.