From 8ea1525df40751af2702a508c3ecf2edf2d76107 Mon Sep 17 00:00:00 2001
From: Seth <37915796+iSaluki@users.noreply.github.com>
Date: Mon, 03 Oct 2022 18:45:54 +0000
Subject: [PATCH] Add SethMB Work (#203)
---
assets/js/util.js | 10 ++++------
1 files changed, 4 insertions(+), 6 deletions(-)
diff --git a/assets/js/util.js b/assets/js/util.js
index 32e1568..06db3c1 100644
--- a/assets/js/util.js
+++ b/assets/js/util.js
@@ -55,14 +55,13 @@
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
+ 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)
return (
@@ -109,10 +108,9 @@
// Common utilities for search
const resultToHTML = ({ url, title, content }) => {
- const cleaned = removeMarkdown(content)
return `<button class="result-card" id="${url}">
<h3>${title}</h3>
- <p>${cleaned}</p>
+ <p>${content}</p>
</button>`
}
@@ -195,7 +193,7 @@
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)
--
Gitblit v1.10.0