Skip to content
Snippets Groups Projects
GetTruncateContent 259 B
Newer Older
{{ $length := cond (eq .length 0) 0 (default 150 .length) }}
{{ $text := .text }}
{{ if gt $length 0 }}
  {{ $text = replace $text "<" " <" }}
  {{ $text = chomp (truncate $length "…" (safeHTML (plainify $text))) }}
Arnaud Levy's avatar
Arnaud Levy committed
{{ return safeHTML ($text) }}