mirror of
https://github.com/lovell/sharp.git
synced 2025-07-09 10:30:15 +02:00
Docs: make keyword search case insensitive
This commit is contained in:
parent
9f384e1c6c
commit
81ee8bc30f
@ -105,7 +105,7 @@
|
||||
.then(function (entries) {
|
||||
const results = [];
|
||||
entries.forEach(function (entry) {
|
||||
if (entry.k.includes(keyword)) {
|
||||
if (entry.k.includes(keyword.trim().toLowerCase())) {
|
||||
results.push({
|
||||
title: entry.t,
|
||||
link: entry.l,
|
||||
|
Loading…
x
Reference in New Issue
Block a user