Static intersphinx mappings #13058
gaborbernat
started this conversation in
General
Replies: 1 comment 1 reply
-
sphinx.ext.extlinks may helps: extensions.append('sphinx.ext.extlinks')
extlinks = {
'httpx': ('https://www.python-httpx.org/api#%s', 'httpx.%s'),
}
But note that extlink wont do reslove&check like intersphinx it just generates a link according to your config. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is it possible to statically links some objects? E.g. some projects to not use Sphinx, and would still ike to link to it, for example for
httpx.AsyncClient
tohttps://www.python-httpx.org/api/#asyncclient
?Beta Was this translation helpful? Give feedback.
All reactions