some minor changes for search

* change search weights
* change indentation for contents

Signed-off-by: Toshaan Bharvani <toshaan@vantosh.com>
jamesk-patch-1
Toshaan Bharvani 2 years ago
parent 5878432815
commit fd09731bb9

@ -1,4 +1,4 @@
summaryInclude=0;
summaryInclude=100;
var fuseOptions = {
shouldSort: true,
includeMatches: true,
@ -9,9 +9,9 @@ var fuseOptions = {
maxPatternLength: 32,
minMatchCharLength: 1,
keys: [
{ name: "title" , weight: 0.8 },
{ name: "title" , weight: 0.9 },
{ name: "tags" , weight: 0.7 },
{ name: "contents" , weight: 0.5 },
{ name: "tags" , weight: 0.3 },
{ name: "categories" , weight: 0.3 }
]
};
@ -62,10 +62,10 @@ function populateResults(result){
if(mvalue.key == "tags" || mvalue.key == "categories") {
snippetHighlights.push(mvalue.value);
} else if(mvalue.key == "contents") {
start = mvalue.indices[0][0]-summaryInclude>0?mvalue.indices[0][0]-summaryInclude:0;
end = mvalue.indices[0][1]+summaryInclude<contents.length?mvalue.indices[0][1]+summaryInclude:contents.length;
snippet += contents.substring(start,end);
snippetHighlights.push(mvalue.value.substring(mvalue.indices[0][0],mvalue.indices[0][1]-mvalue.indices[0][0]+1));
start = mvalue.indices[0][0]-summaryInclude>0?mvalue.indices[0][0]-summaryInclude:0;
end = mvalue.indices[0][1]+summaryInclude<contents.length?mvalue.indices[0][1]+summaryInclude:contents.length;
snippet += contents.substring(start,end);
snippetHighlights.push(mvalue.value.substring(mvalue.indices[0][0],mvalue.indices[0][1]-mvalue.indices[0][0]+1));
}
});
}

Loading…
Cancel
Save