in amoro-docs/themes/amoro-theme/static/js/search.js [70:81]
function getSearchPreview(page, query, extraLength) {
const resultLocation = page.content.toLowerCase().indexOf(query.toLowerCase());
return `<a href="${page.uri}">...` +
page.content.substring(resultLocation-extraLength, resultLocation) +
"<b><mark>" +
page.content.substring(resultLocation, resultLocation + query.length) +
"</mark></b>" +
page.content.substring(resultLocation + query.length, resultLocation + extraLength) +
"..." +
"</a>" +
"<hr>"
}