selfprivacy.org/_vendor/github.com/google/docsy/layouts/partials/outputformat.html

13 lines
316 B
HTML
Raw Normal View History

2024-04-21 23:04:16 +00:00
{{/* 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 }}