feat(search): improve search index by rm line number in code block (#294))

This commit is contained in:
Dillon
2020-05-01 00:05:38 +08:00
committed by GitHub
parent 3040ffa107
commit 4191e046d8
4 changed files with 7 additions and 4 deletions

View File

@@ -238,7 +238,7 @@ class Theme {
this._algoliaIndex
.search(query, {
offset: 0,
length: searchConfig.maxResultLength * 10,
length: searchConfig.maxResultLength * 5,
attributesToHighlight: ['title'],
attributesToSnippet: ['content:30'],
highlightPreTag: `<${searchConfig.highlightTag}>`,
@@ -637,7 +637,6 @@ class Theme {
this._resizeTimeout = null;
for (let event of this.resizeEventSet) event();
this.initToc();
this.initSmoothScroll();
this.initMermaid();
this.initSearch();
}, 100);