selfprivacy.org/_vendor/github.com/google/docsy/layouts/partials/outputformat.html
2024-04-22 02:04:16 +03:00

13 lines
316 B
HTML

{{/* Return the current page outputformat */}}
{{ $alts := newScratch }}
{{ $format := "unknown" }}
{{ range .AlternativeOutputFormats }}
{{ $alts.Set .Name true }}
{{ end }}
{{ range .OutputFormats }}
{{ if not ($alts.Get .Name) }}
{{ $format = .Name }}
{{ end }}
{{ end }}
{{ return $format }}