Files
2026-07-13 11:58:46 +08:00

1.1 KiB

title, description, categories, keywords, params
title description categories keywords params
AlternativeOutputFormats Returns a slice of OutputFormat objects, excluding the current output format, each representing one of the output formats enabled for the given page.
functions_and_methods
returnType signatures
page.OutputFormats
PAGE.AlternativeOutputFormats

{{% glossary-term "output format" %}}

The AlternativeOutputFormats method on a Page object returns a slice of OutputFormat objects, excluding the current output format, each representing one of the output formats enabled for the given page. See details.

For example, to generate a link element for each of the alternative output formats:

{{ range .AlternativeOutputFormats }}
  {{ printf "<link rel=%q type=%q href=%q>" .Rel .MediaType.Type .Permalink | safeHTML }}
{{ end }}

Hugo renders this to something like:

<link rel="alternate" type="application/rss+xml" href="https://example.org/index.xml">
<link rel="alternate" type="application/json" href="https://example.org/index.json">