Merge pull request #739 from steven-mathew/fix-flexsearch

fix(flexsearch): separate chain of calls into statements
This commit is contained in:
Henk Verlinde 2022-05-18 14:11:13 +02:00 committed by GitHub
commit a8bf2bc1c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 8 deletions

View File

@ -97,8 +97,8 @@ Source:
{{ $list := (where .Site.Pages "Section" "docs") -}}
{{ $len := (len $list) -}}
index.add(
{{ range $index, $element := $list -}}
{{ range $index, $element := $list -}}
index.add(
{
id: {{ $index }},
href: "{{ .RelPermalink }}",
@ -109,12 +109,9 @@ Source:
description: {{ .Summary | plainify | jsonify }},
{{ end -}}
content: {{ .Plain | jsonify }}
})
{{ if ne (add $index 1) $len -}}
.add(
{{ end -}}
{{ end -}}
;
}
);
{{ end -}}
search.addEventListener('input', show_results, true);