Warning: You are browsing the documentation for PrestaShop 1.7, which is outdated.

You might want to read an updated version of this page for the current version, PrestaShop 8. Read the updated version of this page

Learn how to upgrade to the latest version.

Shortcodes

Hugo provides a nice feature that extends Markdown: shortcodes.

How they work

Shortcodes are a special tags that you can use when writing your content that are interpreted by Hugo before the Markdown parser. You can think of them as “template macros”.

There are two kinds of shortcodes:

  1. Tag style (surrounds your content)

    {{% ExampleShortcode %}} My custom content goes here {{% /ExampleShortcode %}}
    
  2. Placeholder style (self-closing, adds some content)

    {{% ExampleShortcode %}}
    
Markdown expansion vs raw HTML

You can choose to delimit your shortcodes with either {{% %}} or {{< >}}.

If you use the {{% %}} notation, the content you include between the opening and the closing tag will be processed using Markdown. Otherwise, it will be treated as raw HTML.

Parameters

Some shortcodes also accept parameters. Use them like this:

{{% ExampleShortcode param1="value1" params2="value2" %}}

Quick reference

Some default shortcodes are provided by Hugo (read shortcodes documentation) and some have been custom-made for this theme.

Here are the most useful shortcodes, both native and custom:

  • callout – Displays a block inside your document to make some information stand out.
  • funcdef – Displays a styled function definition list.
  • minver – Displays a version pill.
  • notice – Displays a “note”, “tip” or “warning” box to highlight important information.
  • ref – Links to another DevDocs page or a section of the page.