mirror of
				https://github.com/ZetaKebab/quartz.git
				synced 2025-11-04 06:49:49 +00:00 
			
		
		
		
	fix(search): matches getting highlighted in title (#440)
This commit is contained in:
		@@ -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"
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user