Skip to content

Commit

Permalink
📝 intersphinx fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mraniki committed Aug 6, 2023
1 parent bf2b38c commit d928a7e
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,25 +31,42 @@

# -- Extension configuration ---------------------------------------------------

# -- Extension configuration ---------------------------------------------------

# -- intersphinx ------------

intersphinx_mapping = {
"sphinx": ("https://www.sphinx-doc.org/en/master/", None),
# - :doc:`sphinx:usage/extensions/intersphinx`
"dynaconf": ("https://www.dynaconf.com", None),
"python": ("https://docs.python.org/3", None),
"talky": ("https://talky.readthedocs.io/en/latest/", None),
"talky": ("https://talky.readthedocs.io/en/latest", None),
"talky-dev": ("https://talky.readthedocs.io/en/dev/", None),
"findmyorder": ("https://talky.readthedocs.io/projects/findmyorder/en/latest", None),
"findmyorder": (
"https://talky.readthedocs.io/projects/findmyorder/en/latest", None),
"dxsp": ("https://talky.readthedocs.io/projects/dxsp/en/latest", None),
"iamlistening": ("https://talky.readthedocs.io/projects/iamlistening/en/latest", None),
"iamlistening": (
"https://iamlistening.readthedocs.io/en/latest", None),
"talkytrend": ("https://talky.readthedocs.io/projects/talkytrend/en/latest", None),
"myllm": ("https://talky.readthedocs.io/projects/myllm/en/latest", None),
}

intersphinx_disabled_reftypes = ["*"]


# -- hoverxref ----------------

hoverxref_intersphinx = [
'readthedocs',
'sphinx',
'python',
'talky',
'findmyorder',
'dxsp',
'iamlistening',
'talkytrend',
'myllm',

]
napoleon_google_docstring = True
autosummary_generate = True
Expand Down

0 comments on commit d928a7e

Please sign in to comment.