Skip to content

Commit

Permalink
Prevent corrections and completions in search field
Browse files Browse the repository at this point in the history
  • Loading branch information
mgeier committed Jun 13, 2021
1 parent 23e30fa commit 1f43dee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/insipid_sphinx_theme/insipid/layout.html
Expand Up @@ -138,7 +138,7 @@
{%- if pagename != "search" and 'searchbox.html' not in sidebars %}
<div id="searchbox" role="search">
<form id="search-form" class="search" style="display: none" action="{{ pathto('search') }}" method="get">
<input type="search" name="q" placeholder="{{ _('Search') + ' ...' }}" />
<input type="search" name="q" placeholder="{{ _('Search') + ' ...' }}" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" />
<button>{{ _('Go') }}</button>
</form>
</div>
Expand Down

0 comments on commit 1f43dee

Please sign in to comment.