sphinxcontrib-jquery

4.1 · active · verified Thu Apr 09

sphinxcontrib-jquery is a Sphinx extension that provides jQuery for Sphinx projects running on versions 1.6 through 4.0. It was created to bridge a period where Sphinx core temporarily removed jQuery, ensuring compatibility for projects relying on it. The current version is 4.1.

Warnings

Install

Quickstart

To enable the `sphinxcontrib-jquery` extension, add 'sphinxcontrib.jquery' to the `extensions` list within your Sphinx project's `conf.py` configuration file.

# conf.py

# To enable the extension, add 'sphinxcontrib.jquery' to the extensions list
# in your Sphinx project's conf.py file.

extensions = [
    'sphinx.ext.autodoc',
    'sphinx.ext.napoleon',
    'sphinxcontrib.jquery', # <--- Add this line
    # ... other extensions
]

view raw JSON →