InkSoul/themes/meme_cdn/layouts/partials/utils/summary.html

12 lines
437 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

{{- $summary := .Summary -}}
{{- if .Truncated -}}
<!-- For the CJK language, add ellipsis. -->
{{- if .Params.isCJKLanguage -}}
{{- $summary = printf `%s%s` .Summary (i18n "ellipsis") | safeHTML -}}
<!-- For the other languages, no need. -->
<!-- Hugos automatic summary split method will split until end of sentence. -->
<!-- (Tested English Only) -->
{{- end -}}
{{- end -}}
{{- return $summary -}}