From 6652cb045993c6bfe5e7594fb78e8149780a32e5 Mon Sep 17 00:00:00 2001 From: thec0sm0s Date: Wed, 13 May 2020 17:04:39 +0530 Subject: [PATCH] Add interphinx_mapping --- docs/conf.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index c6011f6..7383427 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -45,6 +45,13 @@ extensions = [ 'pallets_sphinx_themes', ] +intersphinx_mapping = { + 'python': ('https://docs.python.org/3', None), + 'flask': ('https://flask.palletsprojects.com/en/1.1.x/', None), + 'cachetools': ('https://cachetools.readthedocs.io/en/stable/', None), + 'requests_oauthlib': ('https://requests-oauthlib.readthedocs.io/en/latest/', None) +} + # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates']