Merge pull request #770 from niccokunzmann/interspinx

Add intersphinx
pull/755/head^2
Nicco Kunzmann 2025-01-18 00:02:52 +01:00 zatwierdzone przez GitHub
commit 2801ec7d4a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
2 zmienionych plików z 7 dodań i 2 usunięć

Wyświetl plik

@ -18,7 +18,7 @@ Breaking changes:
New features:
- ...
- Python types in documentation now link to their documentation pages using ``intersphinx``.
Bug fixes:

Wyświetl plik

@ -21,7 +21,8 @@ extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.coverage',
'sphinx.ext.viewcode',
'sphinx_copybutton'
'sphinx_copybutton',
'sphinx.ext.intersphinx',
]
source_suffix = '.rst'
master_doc = 'index'
@ -41,3 +42,7 @@ man_pages = [
('index', 'icalendar', 'icalendar Documentation',
['Plone Foundation'], 1)
]
intersphinx_mapping = {
"python": ("https://docs.python.org/3", None),
}