From e4dffea33c57bbc98a4b6549959eb5317768ffa4 Mon Sep 17 00:00:00 2001 From: Marc Foley Date: Mon, 17 Mar 2025 13:31:34 +0000 Subject: [PATCH] Use regex to filter families --- .ci/tags.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/tags.html b/.ci/tags.html index c1b8798f3..b128a196c 100644 --- a/.ci/tags.html +++ b/.ci/tags.html @@ -381,7 +381,7 @@ function axesCombos(axes) { if (this.currentCategory !== " All") { filtered = filtered.filter(family => family.category === this.currentCategory); } - filtered = filtered.filter(family => family.tag.toLowerCase().includes(this.tagFilter.toLowerCase())); + filtered = filtered.filter(family => family.tag.match(this.tagFilter)); filtered.sort(sortFunc); if (this.reverseTags) { -- 2.47.2