suppress search feature on epub result

This commit is contained in:
Yoshiki Shibukawa 2016-07-17 10:17:39 +09:00
parent 06a861703d
commit 62ed395f5c
2 changed files with 8 additions and 0 deletions

View File

@ -6,6 +6,11 @@ Bugs fixed
* applehelp: Sphinx crashes if ``hiutil`` or ``codesign`` commands not found
* Fix ``make clean`` abort issue when build dir contains regular files like ``DS_Store``.
* Reduce epubcheck warnings/errors:
* Fix DOCTYPE to html5
* Change extension from .html to .xhtml.
* Disable search page on epub results
Release 1.4.5 (released Jul 13, 2016)
=====================================

View File

@ -189,6 +189,9 @@ class EpubBuilder(StandaloneHTMLBuilder):
# don't add sidebar etc.
embedded = True
# don't generate search index or include search page
search = False
mimetype_template = MIMETYPE_TEMPLATE
container_template = CONTAINER_TEMPLATE
toc_template = TOC_TEMPLATE