summaryrefslogtreecommitdiffstats
path: root/docs/content/en/methods/page/AlternativeOutputFormats.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/methods/page/AlternativeOutputFormats.md')
-rw-r--r--docs/content/en/methods/page/AlternativeOutputFormats.md15
1 files changed, 7 insertions, 8 deletions
diff --git a/docs/content/en/methods/page/AlternativeOutputFormats.md b/docs/content/en/methods/page/AlternativeOutputFormats.md
index 03e14e287..c4075d010 100644
--- a/docs/content/en/methods/page/AlternativeOutputFormats.md
+++ b/docs/content/en/methods/page/AlternativeOutputFormats.md
@@ -3,20 +3,19 @@ title: AlternativeOutputFormats
description: Returns a slice of OutputFormat objects, excluding the current output format, each representing one of the output formats enabled for the given page.
categories: []
keywords: []
-action:
- related:
- - methods/page/OutputFormats
- returnType: page.OutputFormats
- signatures: [PAGE.AlternativeOutputFormats]
+params:
+ functions_and_methods:
+ returnType: page.OutputFormats
+ signatures: [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](/templates/output-formats/).
+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](/configuration/output-formats/).
## Methods
-{{% include "methods/page/_common/output-format-methods.md" %}}
+{{% include "/_common/methods/page/output-format-methods.md" %}}
## Example
@@ -29,7 +28,7 @@ Generate a `link` element in the `<head>` of each page for each of the alternati
{{ if .IsHome }}
{{ $title = site.Title }}
{{ end }}
- {{ range .AlternativeOutputFormats -}}
+ {{ range .AlternativeOutputFormats }}
{{ printf `<link rel=%q type=%q href=%q title=%q>` .Rel .MediaType.Type .Permalink $title | safeHTML }}
{{ end }}
...