updating install docs and adding script

This commit is contained in:
afeiszli
2021-10-03 15:50:22 -04:00
parent 1fbf99b2a2
commit 583d843325
53 changed files with 2226 additions and 455 deletions

View File

@@ -509,7 +509,7 @@ var Search = {
var excerpt = ((start > 0) ? '...' : '') +
$.trim(text.substr(start, 240)) +
((start + 240 - text.length) ? '...' : '');
var rv = $('<div class="context"></div>').text(excerpt);
var rv = $('<p class="context"></p>').text(excerpt);
$.each(hlwords, function() {
rv = rv.highlightText(this, 'highlighted');
});