{{- /* Get post description or generate it from the post content */ -}} {{- $max_length := default 200 .Params.max_length -}} {{- $description := "" -}} {{- if .Description -}} {{- $description = .Description -}} {{- else if .Params.description -}} {{- $description = .Params.description -}} {{- else -}} {{- /* Remove the line number of the code snippet */ -}} {{- $content := .Content -}} {{- if findRE `
` $content -}} {{- $content = replace $content ` ` `` -}} {{- end -}} {{- $description = $content | markdownify | plainify | replaceRE `\s+` ` ` -}} {{- end -}} {{- (trim $description " ") | truncate $max_length | safeHTML -}}