doc: Add sphinx 404 page

This commit is contained in:
patrick96 2023-10-22 22:17:10 +02:00 committed by Patrick Ziegler
parent 6a648c8ef7
commit 38f67f4269
2 changed files with 8 additions and 3 deletions

View File

@ -88,10 +88,14 @@ extensions = [
"sphinx.ext.extlinks",
]
# The search extension works only on readthedocs
# See https://readthedocs-sphinx-search.readthedocs.io
if on_rtd:
extensions.append("sphinx_search.extension")
extensions += [
# The custom 404 page is only needed
"notfound.extension",
# The search extension works only on readthedocs
# See https://readthedocs-sphinx-search.readthedocs.io
"sphinx_search.extension",
]
# Add any paths that contain templates here, relative to this directory.
templates_path = [doc_path + '/_templates']

View File

@ -1,2 +1,3 @@
sphinx-rtd-theme~=1.3.0
sphinx-notfound-page~=1.0.0
readthedocs-sphinx-search~=0.3.1