1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-11-28 18:11:07 +02:00

Use AND between words in mdbook search (#1306)

The default is to use `OR`, which I find counter-intuitive: the more I
try to narrow down a search, the more hits I get. See the full
documentation for more options:


https://rust-lang.github.io/mdBook/format/configuration/renderers.html#outputhtmlsearch
This commit is contained in:
Martin Geisler 2023-10-05 16:17:05 +02:00 committed by GitHub
parent c93a4bc20c
commit a38a33c8fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,5 +86,8 @@ line-numbers = true
# Send people to canonical URL instead of index.html
"welcome.html" = "./"
[output.html.search]
use-boolean-and = true
[output.exerciser]
output-directory = "comprehensive-rust-exercises"