fix(search): matches getting highlighted in title (#440)

This commit is contained in:
Ben Schlegel 2023-09-01 23:12:32 +02:00 committed by GitHub
parent fa0629716f
commit 53dd86727b

View File

@ -157,7 +157,7 @@ document.addEventListener("nav", async (e: unknown) => {
return {
id,
slug,
title: highlight(term, data[slug].title ?? ""),
title: searchType === "tags" ? data[slug].title : highlight(term, data[slug].title ?? ""),
// if searchType is tag, display context from start of file and trim, otherwise use regular highlight
content:
searchType === "tags"