Skip to content

Commit 99053f0

Browse files
committed
Configure intersphinx
1 parent 451f178 commit 99053f0

File tree

3 files changed

+39
-5
lines changed

3 files changed

+39
-5
lines changed

Makefile

+9
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,12 @@ help:
2222
# Live reload site documents for local development
2323
livehtml:
2424
sphinx-autobuild "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
25+
26+
INTERSPHINX_TARGETS := \
27+
intersphinx-python \
28+
intersphinx-numpy \
29+
intersphinx-ipython
30+
31+
.PHONY: $(INTERSPHINX_TARGETS)
32+
$(INTERSPHINX_TARGETS): intersphinx-%:
33+
cd content && python3 ls_intersphinx_targets.py $(subst intersphinx-,,$@) | less

content/conf.py

+21-5
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
# remove once sphinx_rtd_theme updated for contrast and accessibility:
3838
"sphinx_rtd_theme_ext_color_contrast",
3939
"sphinx.ext.todo",
40+
"IPython.sphinxext.ipython_console_highlighting",
4041
]
4142

4243
# Settings for myst_nb:
@@ -101,16 +102,31 @@
101102
# :py:mod:`multiprocessing` to link straight to the Python docs of that module.
102103
# List all available references:
103104
# python -msphinx.ext.intersphinx https://docs.python.org/3/objects.inv
104-
# extensions.append('sphinx.ext.intersphinx')
105-
# intersphinx_mapping = {
106-
# #'python': ('https://docs.python.org/3', None),
105+
extensions.append('sphinx.ext.intersphinx')
106+
intersphinx_mapping = {
107+
'python': ('https://docs.python.org/3', None),
107108
# #'sphinx': ('https://www.sphinx-doc.org/', None),
108-
# #'numpy': ('https://numpy.org/doc/stable/', None),
109+
'numpy': ('https://numpy.org/doc/stable/', None),
109110
# #'scipy': ('https://docs.scipy.org/doc/scipy/reference/', None),
110111
# #'pandas': ('https://pandas.pydata.org/docs/', None),
111112
# #'matplotlib': ('https://matplotlib.org/', None),
112113
# 'seaborn': ('https://seaborn.pydata.org/', None),
113-
# }
114+
'ipython': ('https://ipython.readthedocs.io/en/stable/', None),
115+
}
116+
117+
# sphinx-hoverxref
118+
extensions.append("hoverxref.extension")
119+
hoverxref_auto_ref = True
120+
hoverxref_domains = ["py"]
121+
hoverxref_role_types = {
122+
'hoverxref': 'modal',
123+
'ref': 'modal', # for hoverxref_auto_ref config
124+
'func': 'modal',
125+
'meth': 'modal',
126+
'mod': 'tooltip', # for Python Sphinx Domain
127+
'class': 'tooltip', # for Python Sphinx Domain
128+
}
129+
114130

115131
# add few new directives
116132
from sphinx_lesson.directives import _BaseCRDirective

content/ls_intersphinx_targets.py

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import sys
2+
from sphinx.ext.intersphinx import inspect_main
3+
4+
from conf import intersphinx_mapping
5+
6+
7+
library = sys.argv[1]
8+
url = intersphinx_mapping[library][0] + "/objects.inv"
9+
inspect_main([url])

0 commit comments

Comments
 (0)