I discovered that the search function of the latest version of my website eswp3.org hosted on readthedocs.org does not work anymore. I use the default search functionality of the python-sphinx html theme sphinx_rtd_theme. I use the default makefile to build the html files.
Some possible bug cause investigation:
make html
in the root directory eswp3/ on
my local file system. No problems regarding indexing have been printed.What did i miss? Do i have to consider possible differences of the python-sphinx versions used in the different builds?
Thanks a lot in advance.
Some files edited on windows machines have not been commited to github as UTF-8 format files but WINDOWS-1252 format files initially or after file edits. Converting all *.rst files to UTF-8 did the job (e.g. by converting all *.srt files of the current directory on UNIX into a subfolder /utf-8 using find . -name "*.rst" -exec iconv -f WINDOWS-1252 -t UTF-8 {} -o utf-8/{} \;
).