Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't disconnect html-page-context event from sphinx-tabs #318

Merged
merged 1 commit into from
Nov 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions hoverxref/extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,19 +144,6 @@ def setup_domains(app, config):
app.add_domain(domain, override=True)


def setup_sphinx_tabs(app, config):
"""
Disconnect ``update_context`` function from ``sphinx-tabs``.

Sphinx Tabs removes the CSS/JS from pages that does not use the directive.
Although, we need them to use inside the tooltip.
"""
for listener in app.events.listeners.get('html-page-context'):
module_name = inspect.getmodule(listener.handler).__name__
if module_name == 'sphinx_tabs.tabs':
app.disconnect(listener.id)


def setup_intersphinx(app, config):
"""
Disconnect ``missing-reference`` from ``sphinx.ext.intershinx``.
Expand Down Expand Up @@ -365,7 +352,6 @@ def setup(app):
app.connect('config-inited', deprecated_configs_warning)

app.connect('config-inited', setup_domains)
app.connect('config-inited', setup_sphinx_tabs)
app.connect('config-inited', setup_intersphinx)
app.connect('config-inited', setup_theme)
app.connect('config-inited', setup_assets_policy)
Expand Down
Loading