We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0c4d7d commit 162f9b1Copy full SHA for 162f9b1
docs/_static/searchtools.js
@@ -282,7 +282,7 @@ const Search = {
282
283
const queryLower = query.toLowerCase();
284
for (const [title, foundTitles] of Object.entries(allTitles)) {
285
- if (title.toLowerCase().includes(queryLower) && (queryLower.length >= title.length/2)) {
+ if (title.toLowerCase().includes(queryLower)) {
286
for (const [file, id] of foundTitles) {
287
let score = Math.round(100 * queryLower.length / title.length)
288
results.push([
0 commit comments