You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Configuration file for the Sphinx documentation builder.## For the full list of built-in configuration values, see the documentation:# https://www.sphinx-doc.org/en/master/usage/configuration.html# -- Project information -----------------------------------------------------# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-informationproject='Test tippy'copyright='2023, Denis'author='Denis'release='0'# -- General configuration ---------------------------------------------------# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configurationextensions= [
'sphinx_tippy',
]
source_suffix= ['.rst']
templates_path= ['_templates']
exclude_patterns= ['_build', 'Thumbs.db', '.DS_Store']
# -- Options for HTML output -------------------------------------------------# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-outputhtml_theme='alabaster'html_static_path= ['_static']
When
sphinx-build
is run with its-j auto
option,sphinx-tippy
doesn't work.Indeed, consider the joined (minimal) project, the structure of which being:
with the following files:
conf.py
:index.rst
:test.rst
:First, run:
sphinx-build . _build/html
and look at the
_build/html/test.html
page in a browser: you'll seesphinx-tippy
works as expected when hovering over the “Sphinx” link (the target of which being https://en.wikipedia.org/wiki/Sphinx_(documentation_generator)).Now, run:
make clean sphinx-build -j auto . _build/html
and refresh the
_build/html/test.html
page: you'll seesphinx-tippy
doesn't work anymore: nothing happens when hovering over the “Sphinx” link.test-tippy.tar.gz
The text was updated successfully, but these errors were encountered: