--- title: "Shortcodes" date: 2020-08-11 draft: false description: "All the shortcodes available in Congo." summary: Congo includes several shortcodes for adding rich content to articles including images, charts, diagrams, buttons and more. slug: "shortcodes" tags: ["shortcodes", "mermaid", "icon", "lead", "docs"] --- In addition to all the [default Hugo shortcodes](https://gohugo.io/content-management/shortcodes/), Congo adds a few extras for additional functionality. ## Alert `alert` outputs its contents as a stylised message box within your article. It's useful for drawing attention to important information that you don't want the reader to miss. The input is written in Markdown so you can format it however you please. By default, the alert is presented with an exclaimation triangle icon. To change the icon, include the icon name in the shortcode. Check out the [icon shortcode](#icon) for more details on using icons. **Example:** ```md {{}} **Warning!** This action is destructive! {{}} {{}} Don't forget to [follow me](https://x.com/jpanther) on X. {{}} ``` {{< alert >}} **Warning!** This action is destructive! {{< /alert >}}   {{< alert "x-twitter" >}} Don't forget to [follow me](https://x.com/jpanther) on X. {{< /alert >}} ## Badge `badge` outputs a styled badge component which is useful for displaying metadata. **Example:** ```md {{}} New article! {{}} ``` {{< badge >}} New article! {{< /badge >}} ## Button `button` outputs a styled button component which can be used to highlight a primary action. It has three optional parameters: |Parameter|Description| |---|---| |`href`|The URL that the button should link to.| |`target`|The target of the link.| |`download`|Whether browser should download the resource rather than navigate to the URL. The value of this parameter will be the name of the downloaded file.| **Example:** ```md {{}} Call to action {{}} ``` {{< button href="#button" target="_self" >}} Call to action {{< /button >}} ## Chart `chart` uses the Chart.js library to embed charts into articles using simple structured data. It supports a number of [different chart styles](https://www.chartjs.org/docs/latest/samples/) and everything can be configured from within the shortcode. Simply provide the chart parameters between the shortcode tags and Chart.js will do the rest. Refer to the [official Chart.js docs](https://www.chartjs.org/docs/latest/general/) for details on syntax and supported chart types. **Example:** ```js {{}} type: 'bar', data: { labels: ['Tomato', 'Blueberry', 'Banana', 'Lime', 'Orange'], datasets: [{ label: '# of votes', data: [12, 19, 3, 5, 3], }] } {{}} ``` {{< chart >}} type: 'bar', data: { labels: ['Tomato', 'Blueberry', 'Banana', 'Lime', 'Orange'], datasets: [{ label: '# of votes', data: [12, 19, 3, 5, 3], }] } {{< /chart >}} You can see some additional Chart.js examples on the [charts samples]({{< ref "charts" >}}) page. ## Congo-figure ⚠️ ⚠️ Congo includes it's own enhanced variant of the hugo's `figure` shortcode to include images in content: `congo-figure` {{< details summary="➡ Click here to learn more about why this changed ⬅" >}} --- In previous version, The shortcode overloaded the embedded `figure` shortcode to provide additional functionality and performance benefits. With the introduction of Hugo 0.146.x in April 2025, the functionality being used to call the embedded shortcode was [removed](https://github.com/gohugoio/hugo/issues/13553) Subsequently the practice of re-using an embedded shortcode's name, and providing a mechanism to fall-through to the embedded shortcode's functionality has been [classified as an antipattern](https://discourse.gohugo.io/t/conditional-overloading-of-an-embedded-shortcode-post-0-146-0/54481). Theme authors have been encouraged to [instead adopt a wrapper-style pattern](https://github.com/halogenica/beautifulhugo/pull/532#issuecomment-2818924671). --- {{< /details >}} When a provided image is a page resource, it will be optimised using Hugo Pipes and scaled in order to provide images appropriate to different device resolutions. If a static asset or URL to an external image is provided, it will be included as-is without any image processing by Hugo. The `congo-figure` shortcode accepts six parameters: |Parameter|Description| |---|---| |`src`| **Required.** The local path/filename or URL of the image. When providing a path and filename, the theme will attempt to locate the image using the following lookup order: Firstly, as a [page resource](https://gohugo.io/content-management/page-resources/) bundled with the page; then an asset in the `assets/` directory; then finally, a static image in the `static/` directory.| |`alt`|[Alternative text description](https://moz.com/learn/seo/alt-text) for the image.| |`caption`|Markdown for the image caption, which will be displayed below the image.| |`class`|Additional CSS classes to apply to the image.| |`href`|URL that the image should be linked to.| |`default`|Special parameter to revert to default Hugo `figure` behaviour. Simply provide `default=true` and then use normal [Hugo shortcode syntax](https://gohugo.io/content-management/shortcodes/#figure).| Congo also supports automatic conversion of images included using standard Markdown syntax. Simply use the following format and the theme will handle the rest: ```md ![Alt text](image.jpg "Image caption") ``` **Example:** ```md {{}} ![Abstract purple artwork](abstract.jpg "Photo by [Jr Korpa](https://unsplash.com/@jrkorpa) on [Unsplash](https://unsplash.com/)") ``` {{< congo-figure src="abstract.jpg" alt="Abstract purple artwork" caption="Photo by [Jr Korpa](https://unsplash.com/@jrkorpa) on [Unsplash](https://unsplash.com/)" >}} Fallback functionality example: {{< congo-figure default=true src="abstract.jpg" alt="Abstract purple artwork" caption="Photo by [Jr Korpa](https://unsplash.com/@jrkorpa) on [Unsplash](https://unsplash.com/)" >}} ## Gist The `gist` shortcode can be used to embed a GitHub Gist. It requires two unnamed parameters: the username and ID of the Gist. **Example:** ```md {{}} ``` {{< gist jpanther 26292111fe1eb8e31c60f6dbfef9df28 >}} ## Icon `icon` outputs an SVG icon and takes the icon name as its only parameter. The icon is scaled to match the current text size. **Example:** ```md {{}} ``` **Output:** {{< icon "github" >}} Icons are populated using Hugo pipelines which makes them very flexible. Congo includes a number of built-in icons for social, links and other purposes. Check the [icon samples]({{< ref "samples/icons" >}}) page for a full list of supported icons. Custom icons can be added by providing your own icon assets in the `assets/icons/` directory of your project. The icon can then be referenced in the shortcode by using the SVG filename without the `.svg` extension. Icons can also be used in partials by calling the [icon partial]({{< ref "partials#icon" >}}). ## Katex The `katex` shortcode can be used to add mathematical expressions to article content using the KaTeX package. Refer to the online reference of [supported TeX functions](https://katex.org/docs/supported.html) for the available syntax. To include mathematical expressions in an article, simply place the shortcode anywhere with the content. It only needs to be included once per article and KaTeX will automatically render any markup on that page. Both inline and block notation are supported. Inline notation can be generated by wrapping the expression in `\\(` and `\\)` delimiters. Alternatively, block notation can be generated using `$$` delimiters. **Example:** ```md {{}} \\(f(a,b,c) = (a^2+b^2+c^2)^3\\) ``` {{< katex >}} \\(f(a,b,c) = (a^2+b^2+c^2)^3\\) Check out the [mathematical notation samples]({{< ref "mathematical-notation" >}}) page for more examples. ## Lead `lead` is used to bring emphasis to the start of an article. It can be used to style an introduction, or to call out an important piece of information. Simply wrap any Markdown content in the `lead` shortcode. **Example:** ```md {{}} When life gives you lemons, make lemonade. {{}} ``` {{< lead >}} When life gives you lemons, make lemonade. {{< /lead >}} ## Mermaid `mermaid` allows you to draw detailed diagrams and visualisations using text. It uses Mermaid under the hood and supports a wide variety of diagrams, charts and other output formats. Simply write your Mermaid syntax within the `mermaid` shortcode and let the plugin do the rest. Refer to the [official Mermaid docs](https://mermaid-js.github.io/) for details on syntax and supported diagram types. **Example:** ```md {{}} graph LR; A[Lemons]-->B[Lemonade]; B-->C[Profit] {{}} ``` {{< mermaid >}} graph LR; A[Lemons]-->B[Lemonade]; B-->C[Profit] {{< /mermaid >}} You can see some additional Mermaid examples on the [diagrams and flowcharts samples]({{< ref "diagrams-flowcharts" >}}) page. ## Profile The `profile` shortcode inserts a block displaying the site author's details. The same template is used on Congo's homepage layouts, but can also be inserted in any article content. It has one optional parameter: |Parameter|Description| |---|---| |`align`|The alignment of the profile elements - valid options include `start`, `center` and `end`. If no value is provided, the `center` alignment will be used.| The template is populated using the author parameters set in the [Language Configuration]({{< ref "configuration#configuration" >}}). **Example:** ```md {{}} ``` {{< profile align="center" >}}