Merge pull request #508 from schnerring/flexsearch-description

Add .Summary as fallback for description
This commit is contained in:
Henk Verlinde
2021-10-14 17:20:43 +02:00
committed by GitHub
2 changed files with 10 additions and 2 deletions

View File

@ -103,7 +103,11 @@ Source:
id: {{ $index }},
href: "{{ .RelPermalink }}",
title: {{ .Title | jsonify }},
description: {{ .Params.description | jsonify }},
{{ with .Description -}}
description: {{ . | jsonify }},
{{ else -}}
description: {{ .Summary | plainify | jsonify }},
{{ end -}}
content: {{ .Content | jsonify }}
})
{{ if ne (add $index 1) $len -}}