Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ENH: Add support for RTD search #116

Merged
merged 1 commit into from Jul 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/conf.py
Expand Up @@ -51,6 +51,7 @@
"recommonmark",
"sphinx_markdown_tables",
"sphinx_copybutton",
"sphinx_search.extension",
]

autosummary_generate = True
Expand Down
1 change: 1 addition & 0 deletions docs/requirements.txt
Expand Up @@ -11,3 +11,4 @@ ipykernel
recommonmark
sphinx_markdown_tables
sphinx-copybutton
readthedocs-sphinx-search
2 changes: 1 addition & 1 deletion sphinx_material/sphinx_material/searchbox.html
Expand Up @@ -2,7 +2,7 @@
<div class="md-search" data-md-component="search" role="dialog">
<label class="md-search__overlay" for="__search"></label>
<div class="md-search__inner" role="search">
<form class="md-search__form" action="{{ pathto('search') }}" method="GET" name="search">
<form class="md-search__form" action="{{ pathto('search') }}" method="get" name="search">
<input type="text" class="md-search__input" name="q" placeholder="Search"
autocapitalize="off" autocomplete="off" spellcheck="false"
data-md-component="query" data-md-state="active">
Expand Down