--- aliases: - /doc/shortcodes/ date: 2013-07-01 menu: main: parent: extras next: /extras/pagination prev: /extras/permalinks title: Shortcodes weight: 80 toc: false --- Hugo uses Markdown for its simple content format. However, there are a lot of things that Markdown doesn’t support well. We are unwilling to accept being constrained by our simple format. Also unacceptable is writing raw HTML in our Markdown every time we want to include unsupported content such as a video. To do so is in complete opposition to the intent of using a bare bones format for our content and utilizing templates to apply styling for display. To avoid both of these limitations, Hugo created shortcodes. 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 a functionality like that in a template, you most likely want a [partial template](/templates/partials/) instead. ## Using a shortcode In your content files, a shortcode can be called by using the `{{%/* name parameters */%}}` form. Shortcode parameters are space delimited. Parameters with spaces can be quoted. The first word 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 mixed 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. Like HTML, the opening and closing shortcodes match (name only), the closing being prepended with a slash. Example of a paired shortcode: {{}} A bunch of code here {{}} The examples above use two different delimiters, the difference being the `%` and the `<` character: ### Shortcodes with Markdown The `%` characters indicates that the shortcode's inner content needs further processing by the page's rendering processor (i.e. Markdown), needed to get the **bold** text in the example below: {{%/* myshortcode */%}}Hello **World!**{{%/* /myshortcode */%}} ### Shortcodes without Markdown The `<` character indicates that the shortcode's inner content doesn't need any further rendering, this will typically be pure HTML: {{}}

Hello World!

{{}} ## Built-in Shortcodes Hugo ships with a set of predefined shortcodes. ### highlight This shortcode will convert the source code provided into syntax highlighted HTML. Read more on [highlighting](/extras/highlighting/). #### Usage `highlight` takes exactly one required parameter of _language_ and requires a closing shortcode. #### Example {{}}

{{ .Title }}

{{ range .Data.Pages }} {{ .Render "summary"}} {{ end }}
{{}} #### Example Output <section id="main"> <div> <h1 id="title">{{ .Title }}</h1> {{ range .Data.Pages }} {{ .Render "summary"}} {{ end }} </div> </section> *** ### figure `figure` is simply an extension of the image capabilities present with Markdown. `figure` provides the ability to add captions, CSS classes, alt text, links etc. #### Usage `figure` can use the following named parameters: * src * link * title * caption * class * attr (attribution) * attrlink * alt #### Example {{}} #### Example output

Steve Francia

*** ### ref, 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. Read more on [cross-references]({{% ref "extras/crossreferences.md" %}}). #### Usage `ref` and `relref` take exactly one required parameter of _reference_. #### Example [Neat]({{}}) [Who]({{}}) #### Example Output Assuming that standard Hugo pretty URLs are turned on. Neat Who *** ### Twitter You want to include a single tweet into your blog post? Everything you need is the URL of the tweet: https://twitter.com/spf13/status/666616452582129664 Pass the tweet's id from the URL as parameter to the shortcode as shown below: {{}} *** ### Youtube This shortcode embeds a responsive video player for Youtube videos. Only the id of the video is required: https://www.youtube.com/watch?v=w7Ft2ymGmfc Copy the id from behind `v=` and pass it the shortcode: {{}} *** ### Vimeo Adding a video from Vimeo is equivalent to the Youtube shortcode above. Extract the id from the URL https://vimeo.com/channels/staffpicks/146022717 and pass it to the shortcode: {{}} *** ### Github gists Including code snippets with Github gists while writing a tutorial is common situation bloggers face. With a given URL of the gist https://gist.github.com/spf13/7896402 pass the owner and the id of the gist to the shortcode: {{}} *** ### Speakerdeck To embed slides from Speakerdeck copy the URL of the slide look for 'Embed' right next to the template on Speakerdeck an copy the URL: Extract the value from the field `id` and pass it to the shortcode: {{}} *** ## Creating your own shortcodes To create a shortcode, place a template in the layouts/shortcodes directory. The template name will be the name of the shortcode. In creating a shortcode, you can choose if the shortcode will use _positional parameters_ or _named parameters_ or _both_. A good rule of thumb is that if a shortcode has a single required value in the case of the `youtube` example below, then positional works very well. For more complex layouts with optional parameters, named parameters work best. Allowing both types of parameters is useful for complex layouts where you want to set default values that can be overridden. **Inside the template** To access a parameter by position, the `.Get` method can be used: {{ .Get 0 }} To access a parameter by name, the `.Get` method should be utilized: {{ .Get "class" }} `with` is great when the output depends on a parameter being set: {{ with .Get "class"}} class="{{.}}"{{ end }} `.Get` can also be used to check if a parameter has been provided. This is most helpful when the condition depends on either one value or another... or both: {{ or .Get "title" | .Get "alt" | if }} alt="{{ with .Get "alt"}}{{.}}{{else}}{{.Get "title"}}{{end}}"{{ end }} If a closing shortcode is used, the variable `.Inner` will be populated with all of the content between the opening and closing shortcodes. If a closing shortcode is required, you can check the length of `.Inner` and provide a warning to the user. A shortcode with `.Inner` content can be used without the inline content, and without the closing shortcode, by using the self-closing syntax: {{}} The variable `.Params` contains the list of parameters in case you need to do more complicated things than `.Get`. It is sometimes useful to provide a flexible shortcode that can take named or positional parameters. To meet this need, Hugo shortcodes have a `.IsNamedParams` boolean available that can be used such as `{{ if .IsNamedParams }}...{{ else }}...{{ end }}`. See the `Single Flexible Example` below for an example. You can also use the variable `.Page` to access all the normal [Page Variables](/templates/variables/). ## Single Positional Example: youtube {{}} Would load the template /layouts/shortcodes/youtube.html
This would be rendered as:
## Single Named Example: image with caption {{}} Would load the template /layouts/shortcodes/img.html
{{ with .Get "link"}}{{ end }} {{ if .Get "link"}}{{ end }} {{ if or (or (.Get "title") (.Get "caption")) (.Get "attr")}}
{{ if isset .Params "title" }}

{{ .Get "title" }}

{{ end }} {{ if or (.Get "caption") (.Get "attr")}}

{{ .Get "caption" }} {{ with .Get "attrlink"}} {{ end }} {{ .Get "attr" }} {{ if .Get "attrlink"}} {{ end }}

{{ end }}
{{ end }}
Would be rendered as:

Steve Francia

## Single Flexible Example: vimeo with defaults {{}} {{}} Would load the template /layouts/shortcodes/vimeo.html {{ if .IsNamedParams }}
{{ else }}
{{ end }} Would be rendered as:
## Paired Example: Highlight *Hugo already ships with the `highlight` shortcode* {{}} This HTML {{}} The template for this utilizes the following code (already include in Hugo) {{ .Get 0 | highlight .Inner }} And will be rendered as:
<html>
        <body> This HTML </body>
    </html>
    
Please notice that this template makes use of a Hugo-specific template function called `highlight` which uses Pygments to add the highlighting code. More shortcode examples can be found at [spf13.com](https://github.com/spf13/spf13.com/tree/master/layouts/shortcodes).