hugo-book/assets/search-data.js

33 lines
857 B
JavaScript
Raw Normal View History

2019-10-27 10:58:58 +00:00
'use strict';
(function () {
const indexCfg = {{ with i18n "bookSearchConfig" }}
{{ . }};
{{ else }}
{};
{{ end }}
2019-07-16 12:34:02 +00:00
2019-10-27 10:58:58 +00:00
indexCfg.doc = {
id: 'id',
field: ['title', 'content'],
store: ['title', 'href', 'section'],
2019-10-27 10:58:58 +00:00
};
2019-10-20 17:02:32 +00:00
2019-10-27 10:58:58 +00:00
const index = FlexSearch.create('balance', indexCfg);
window.bookSearchIndex = index;
2019-10-20 17:02:32 +00:00
{{- $pages := where .Site.Pages "Kind" "in" (slice "page" "section") -}}
{{- $pages = where $pages "Params.booksearchexclude" "!=" true -}}
{{- $pages = where $pages "Content" "not in" (slice nil "") -}}
{{ range $index, $page := $pages }}
2019-10-27 10:58:58 +00:00
index.add({
'id': {{ $index }},
'href': '{{ $page.RelPermalink }}',
'title': {{ (partial "docs/title" $page) | jsonify }},
'section': {{ (partial "docs/title" $page.Parent) | jsonify }},
2019-10-27 10:58:58 +00:00
'content': {{ $page.Plain | jsonify }}
});
{{- end -}}
2019-07-16 12:34:02 +00:00
})();