Skip to content

Commit

Permalink
Config: Workaround bug in sphinx theme causing search to not work
Browse files Browse the repository at this point in the history
The current theme requires `sphinxcontrib.jquery` to perform search.
There is an unresolved bug [1] that results in this extension not loading automatically.

1. readthedocs/sphinx_rtd_theme#1452


git-svn-id: https://svn.blender.org/svnroot/bf-manual/branches/blender-3.5-release/blender_docs@10116 c4de1f47-6596-e411-a384-0024e86c2797
  • Loading branch information
Blendify authored and Blendify committed Apr 4, 2023
1 parent f82f63d commit b12dd4f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions manual/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,13 @@
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
'reference',
'404',
'peertube',
'sphinx.ext.mathjax',
'reference',
'sphinx.ext.intersphinx',
'sphinx.ext.mathjax',
'sphinx.ext.todo',
'404'
'sphinxcontrib.jquery',
]

# Is there a better way to check for PDF building?
Expand Down

0 comments on commit b12dd4f

Please sign in to comment.