diff options
author | Brian Harring <ferringb@gmail.com> | 2024-01-26 11:55:50 -0800 |
---|---|---|
committer | Brian Harring <ferringb@gmail.com> | 2024-01-26 11:55:50 -0800 |
commit | d1cf9285ec363388ee1809ae5a367c6507c31b83 (patch) | |
tree | 7b73a43e8d69ce800e94fde961c84ab0100508a2 | |
parent | remove accidentally commited file. (diff) | |
download | pkgdev-d1cf9285ec363388ee1809ae5a367c6507c31b83.tar.gz pkgdev-d1cf9285ec363388ee1809ae5a367c6507c31b83.tar.bz2 pkgdev-d1cf9285ec363388ee1809ae5a367c6507c31b83.zip |
fix(docs): Add intersphinx_mapping
This fixes any documentation links to the enumerated projects.
Signed-off-by: Brian Harring <ferringb@gmail.com>
-rw-r--r-- | doc/conf.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/conf.py b/doc/conf.py index 7f042c1..7ef0346 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -324,3 +324,10 @@ epub_exclude_files = ["search.html"] # If false, no index is generated. # epub_use_index = True + +intersphinx_mapping = { + "python": ("https://docs.python.org/3", None), +} +intersphinx_mapping.update( + (x, (f"https://pkgcore.github.io/{x}", None)) for x in "pkgcheck pkgcore snakeoil".split() +) |