diff --git a/assets/js/util.js b/assets/js/util.js
index 32e1568e..72541d8e 100644
--- a/assets/js/util.js
+++ b/assets/js/util.js
@@ -55,16 +55,17 @@ const removeMarkdown = (
const highlight = (content, term) => {
const highlightWindow = 20
-
// try to find direct match first
const directMatchIdx = content.indexOf(term)
if (directMatchIdx !== -1) {
- const h = highlightWindow / 2
+ console.log(directMatchIdx)
+ const h = highlightWindow
const before = content.substring(0, directMatchIdx).split(" ").slice(-h)
const after = content
- .substring(directMatchIdx + term.length, content.length - 1)
+ .substring(directMatchIdx + term.length, content.length - 2)
.split(" ")
.slice(0, h)
+ console.log(before, after)
return (
(before.length == h ? `...${before.join(" ")}` : before.join(" ")) +
`${term}` +
@@ -109,10 +110,9 @@ const highlight = (content, term) => {
// Common utilities for search
const resultToHTML = ({ url, title, content }) => {
- const cleaned = removeMarkdown(content)
return ``
}
@@ -195,7 +195,7 @@ const displayResults = (finalResults, extractHighlight = false) => {
return resultToHTML({
url: result.url,
title: highlight(result.title, term),
- content: highlight(result.content, term)
+ content: highlight(removeMarkdown(result.content), term)
})
} else {
return resultToHTML(result)