From 81ee8bc30f816467d1f5d3ad703c7a9d8cb57b3f Mon Sep 17 00:00:00 2001 From: Lovell Fuller Date: Wed, 2 Jun 2021 09:11:08 +0100 Subject: [PATCH] Docs: make keyword search case insensitive --- docs/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index 11cf373c..cce33817 100644 --- a/docs/index.html +++ b/docs/index.html @@ -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,