Files
docker-docs/layouts/partials/utils/description.html
2024-05-08 20:07:17 +02:00

14 lines
351 B
HTML

{{ $desc := "" }}
{{ if .Description }}
{{ $desc = strings.Replace .Description "\n" " " }}
{{ else }}
{{ with .File }}
{{ with (index (site.Data.frontmatter) .Path) }}
{{ with .description }}
{{ $desc = strings.Replace . "\n" " " | strings.TrimRight " " }}
{{ end }}
{{ end }}
{{ end }}
{{ end }}
{{ return $desc }}