|
37 | 37 | # remove once sphinx_rtd_theme updated for contrast and accessibility:
|
38 | 38 | "sphinx_rtd_theme_ext_color_contrast",
|
39 | 39 | "sphinx.ext.todo",
|
| 40 | + "IPython.sphinxext.ipython_console_highlighting", |
40 | 41 | ]
|
41 | 42 |
|
42 | 43 | # Settings for myst_nb:
|
|
101 | 102 | # :py:mod:`multiprocessing` to link straight to the Python docs of that module.
|
102 | 103 | # List all available references:
|
103 | 104 | # 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), |
107 | 108 | # #'sphinx': ('https://www.sphinx-doc.org/', None),
|
108 |
| -# #'numpy': ('https://numpy.org/doc/stable/', None), |
| 109 | + 'numpy': ('https://numpy.org/doc/stable/', None), |
109 | 110 | # #'scipy': ('https://docs.scipy.org/doc/scipy/reference/', None),
|
110 | 111 | # #'pandas': ('https://pandas.pydata.org/docs/', None),
|
111 | 112 | # #'matplotlib': ('https://matplotlib.org/', None),
|
112 | 113 | # '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 | + |
114 | 130 |
|
115 | 131 | # add few new directives
|
116 | 132 | from sphinx_lesson.directives import _BaseCRDirective
|
|
0 commit comments