686c7b6eb ci(Netlify): specify `HUGO_VERSION` environment variable once da99a356f fix: change heading level e57da3f00 Update taxonomy methods 746172490 Update description of rendered breadcrumb navigation 6bc52fd40 Clarify term dab07dcb0 Fix typo e50fa452a Fix typo 6c1ea83c2 Update template overview page a5dc97845 Clarify the append function a135e52a0 Update GitHub hosting instructions a51bf9f4f Update sections page ed35fc6c4 Update archetypes and glossary 1a4522b3e Format examples a70f20094 Use "hugo new content" to create content 673846ff9 Remove comment b7febf0c5 Fix link 6f6fe2133 Miscellaneous edits 99227dd18 Remove lookup order table from output formats page bc8870657 tools/editors: Add Prettier Plugin for Go Templates 157b169eb Update docs.yaml 1c8f514e0 Update cond function e5f1f8113 Add assumptions to taxonomy and term template lookup order examples 475b406e2 Update postprocess 2d6cb8dfc glossary: Update content type 03b514bac Add descriptions to template lookup order example sections 06678f919 glossary: Fix broken link 4cd505612 Simplify news listing fadb980db Update glossary of terms 491bacd78 Change order of example sections for template lookup order 04b8f39ec Create glossary of terms 12e896bc0 Remove reference to asciidoctor-rouge extension 055f7bb37 Insert missing words 8cd6ac387 Miscellaneous edits 2cbe17f41 Update configuration.md 529615373 Update data-templates.md 853154e65 Update theme 45f08627a resources.getRemote: Fix definition list 29a51dac1 Update docshelper 3bdfe88c6 Remove link to gitter from site footer cacd0e461 Use "map" instead of "dictionary" 704dd5da6 Document the transform.Remarshal template function e8d744951 Populate news section via GitHub releases API 3ff1118c7 Replace docs.json with docs.yaml 7726bbcac Use docs.json to generate default config throughout the site 57dca93df Use docs.json to generate default config for related content 74d5082c7 Add some .RenderShortcodes docs cf5ab5062 netlify: Hugo 0.117.0 420f7aa69 Add all config to docshelper.json git-subtree-dir: docs git-subtree-split: 686c7b6eb182ed335dc94b3a0b80c564f7658380
13 KiB
title | description | categories | keywords | menu | toc | weight | aliases | testparam | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Shortcodes | Shortcodes are simple snippets inside your content files calling built-in or custom templates. |
|
|
|
true | 100 |
|
Hugo Rocks! |
What a shortcode is
Hugo loves Markdown because of its simple content format, but there are times when Markdown falls short. Often, content authors are forced to add raw HTML (e.g., video <iframe>
's) to Markdown content. We think this contradicts the beautiful simplicity of Markdown's syntax.
Hugo created shortcodes to circumvent these limitations.
A shortcode is a simple snippet inside a content file that Hugo will render using a predefined template. Note that shortcodes will not work in template files. If you need the type of drop-in functionality that shortcodes provide but in a template, you most likely want a partial template instead.
In addition to cleaner Markdown, shortcodes can be updated any time to reflect new classes, techniques, or standards. At the point of site generation, Hugo shortcodes will easily merge in your changes. You avoid a possibly complicated search and replace operation.
Use shortcodes
{{< youtube 2xkNJL4gJ9E >}}
In your content files, a shortcode can be called by calling {{%/* shortcodename parameters */%}}
. Shortcode parameters are space delimited, and parameters with internal spaces can be quoted.
The first word in the shortcode declaration is always the name of the shortcode. Parameters follow the name. Depending upon how the shortcode is defined, the parameters may be named, positional, or both, although you can't mix parameter types in a single call. The format for named parameters models that of HTML with the format name="value"
.
Some shortcodes use or require closing shortcodes. Again like HTML, the opening and closing shortcodes match (name only) with the closing declaration, which is prepended with a slash.
Here are two examples of paired shortcodes:
{{%/* mdshortcode */%}}Stuff to `process` in the *center*.{{%/* /mdshortcode */%}}
{{</* highlight go */>}} A bunch of code here {{</* /highlight */>}}
The examples above use two different delimiters, the difference being the %
character in the first and the <>
characters in the second.
Shortcodes with raw string parameters
You can pass multiple lines as parameters to a shortcode by using raw string literals:
{{</* myshortcode `This is some <b>HTML</b>,
and a new line with a "quoted string".` */>}}
Shortcodes with markdown
Shortcodes using the %
as the outer-most delimiter will be fully rendered when sent to the content renderer. This means that the rendered output from a shortcode can be part of the page's table of contents, footnotes, etc.
Shortcodes without markdown
The <
character indicates that the shortcode's inner content does not need further rendering. Often shortcodes without Markdown include internal HTML:
{{</* myshortcode */>}}<p>Hello <strong>World!</strong></p>{{</* /myshortcode */>}}
Nested shortcodes
You can call shortcodes within other shortcodes by creating your own templates that leverage the .Parent
variable. .Parent
allows you to check the context in which the shortcode is being called. See Shortcode templates.
Use Hugo's built-in shortcodes
Hugo ships with a set of predefined shortcodes that represent very common usage. These shortcodes are provided for author convenience and to keep your Markdown content clean.
figure
figure
is an extension of the image syntax in Markdown, which does not provide a shorthand for the more semantic HTML5 <figure>
element.
The figure
shortcode can use the following named parameters:
- src
- URL of the image to be displayed.
- link
- If the image needs to be hyperlinked, URL of the destination.
- target
- Optional
target
attribute for the URL iflink
parameter is set. - rel
- Optional
rel
attribute for the URL iflink
parameter is set. - alt
- Alternate text for the image if the image cannot be displayed.
- title
- Image title.
- caption
- Image caption. Markdown within the value of
caption
will be rendered. - class
class
attribute of the HTMLfigure
tag.- height
height
attribute of the image.- width
width
attribute of the image.- loading
loading
attribute of the image.- attr
- Image attribution text. Markdown within the value of
attr
will be rendered. - attrlink
- If the attribution text needs to be hyperlinked, URL of the destination.
Example figure
input
{{< code file="figure-input-example.md" >}} {{</* figure src="elephant.jpg" title="An elephant at sunset" */>}} {{< /code >}}
Example figure
output
<figure>
<img src="elephant.jpg">
<figcaption>An elephant at sunset</figcaption>
</figure>
gist
To display a GitHub gist with this URL:
https://gist.github.com/user/50a7482715eac222e230d1e64dd9a89b
Include this in your markdown:
{{</* gist user 50a7482715eac222e230d1e64dd9a89b */>}}
This will display all files in the gist alphabetically by file name.
{{< gist jmooring 50a7482715eac222e230d1e64dd9a89b >}}
To display a specific file within the gist:
{{</* gist user 50a7482715eac222e230d1e64dd9a89b 1-template.html */>}}
Rendered:
{{< gist jmooring 50a7482715eac222e230d1e64dd9a89b 1-template.html >}}
highlight
To display a highlighted code sample:
{{</* highlight go-html-template */>}}
{{ range .Pages }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ end }}
{{</* /highlight */>}}
Rendered:
{{< highlight go-html-template >}} {{ range .Pages }}
{{ .LinkTitle }}
{{ end }} {{< /highlight >}}To specify one or more highlighting options, include a quotation-encapsulated, comma-separated list:
{{</* highlight go-html-template "lineNos=inline, lineNoStart=42" */>}}
{{ range .Pages }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ end }}
{{</* /highlight */>}}
Rendered:
{{< highlight go-html-template "lineNos=inline, lineNoStart=42" >}} {{ range .Pages }}
{{ .LinkTitle }}
{{ end }} {{< /highlight >}}instagram
The instagram
shortcode uses Facebook's oEmbed Read feature. The Facebook developer documentation states:
- This permission or feature requires successful completion of the App Review process before your app can access live data. Learn More
- This permission or feature is only available with business verification. You may also need to sign additional contracts before your app can access data. Learn More Here
You must obtain an Access Token to use the instagram
shortcode.
If your site configuration is private:
{{< code-toggle file="hugo" copy=false >}} [services.instagram] accessToken = 'xxx' {{< /code-toggle >}}
If your site configuration is not private, set the Access Token with an environment variable:
HUGO_SERVICES_INSTAGRAM_ACCESSTOKEN=xxx hugo --gc --minify
{{% note %}}
If you are using a Client Access Token, you must combine the Access Token with your App ID using a pipe symbol (APPID|ACCESSTOKEN
).
{{% /note %}}
To display an Instagram post with this URL:
https://www.instagram.com/p/BWNjjyYFxVx/
Include this in your markdown:
{{</* instagram BWNjjyYFxVx */>}}
param
Gets a value from the current Page's
parameters set in front matter, with a fallback to the site parameter value. It will log an ERROR
if the parameter with the given key could not be found in either.
{{</* param testparam */>}}
Since testparam
is a parameter defined in front matter of this page with the value Hugo Rocks!
, the above will print:
{{< param testparam >}}
To access deeply nested parameters, use "dot syntax", e.g:
{{</* param "my.nested.param" */>}}
ref
and relref
These shortcodes will look up the pages by their relative path (e.g., blog/post.md
) or their logical name (post.md
) and return the permalink (ref
) or relative permalink (relref
) for the found page.
ref
and relref
also make it possible to make fragmentary links that work for the header links generated by Hugo.
{{% note %}}
Read a more extensive description of ref
and relref
in the cross references documentation.
{{% /note %}}
ref
and relref
take exactly one required parameter of reference, quoted and in position 0
.
Example ref
and relref
input
[Neat]({{</* ref "blog/neat.md" */>}})
[Who]({{</* relref "about.md#who" */>}})
Example ref
and relref
output
Assuming that standard Hugo pretty URLs are turned on.
<a href="https://example.com/blog/neat">Neat</a>
<a href="/about/#who">Who</a>
tweet
To display a Twitter post with this URL:
https://twitter.com/SanDiegoZoo/status/1453110110599868418
Include this in your markdown:
{{</* tweet user="SanDiegoZoo" id="1453110110599868418" */>}}
Rendered:
{{< tweet user="SanDiegoZoo" id="1453110110599868418" >}}
vimeo
To display a Vimeo video with this URL:
https://vimeo.com/channels/staffpicks/55073825
Include this in your markdown:
{{</* vimeo 55073825 */>}}
Rendered:
{{< vimeo 55073825 >}}
{{% note %}}
If you want to further customize the visual styling of the YouTube or Vimeo output, add a class
named parameter when calling the shortcode. The new class
will be added to the <div>
that wraps the <iframe>
and will remove the inline styles. Note that you will need to call the id
as a named parameter as well. You can also give the vimeo video a descriptive title with title
.
{{</* vimeo id="146022717" class="my-vimeo-wrapper-class" title="My vimeo video" */>}}
{{% /note %}}
youtube
The youtube
shortcode embeds a responsive video player for YouTube videos. Only the ID of the video is required, e.g.:
https://www.youtube.com/watch?v=w7Ft2ymGmfc
Example youtube
input
Copy the YouTube video ID that follows v=
in the video's URL and pass it to the youtube
shortcode:
{{< code file="example-youtube-input.md" >}} {{</* youtube w7Ft2ymGmfc */>}} {{< /code >}}
Furthermore, you can automatically start playback of the embedded video by setting the autoplay
parameter to true
. Remember that you can't mix named and unnamed parameters, so you'll need to assign the yet unnamed video ID to the parameter id
:
{{< code file="example-youtube-input-with-autoplay.md" >}} {{</* youtube id="w7Ft2ymGmfc" autoplay="true" */>}} {{< /code >}}
For accessibility reasons, it's best to provide a title for your YouTube video. You can do this using the shortcode by providing a title
parameter. If no title is provided, a default of "YouTube Video" will be used.
{{< code file="example-youtube-input-with-title.md" >}} {{</* youtube id="w7Ft2ymGmfc" title="A New Hugo Site in Under Two Minutes" */>}} {{< /code >}}
Example youtube
output
Using the preceding youtube
example, the following HTML will be added to your rendered website's markup:
{{< code file="example-youtube-output.html" >}} {{< youtube id="w7Ft2ymGmfc" autoplay="true" >}} {{< /code >}}
Example youtube
display
Using the preceding youtube
example (without autoplay="true"
), the following simulates the displayed experience for visitors to your website. Naturally, the final display will be contingent on your style sheets and surrounding markup. The video is also include in the Quick Start of the Hugo documentation.
{{< youtube w7Ft2ymGmfc >}}
Privacy configuration
To learn how to configure your Hugo site to meet the new EU privacy regulation, see Hugo and the GDPR.
Create custom shortcodes
To learn more about creating custom shortcodes, see the shortcode template documentation.