hugo-wasm/docs/content/en/shortcodes/figure.md
2025-01-23 09:47:46 +01:00

3.1 KiB
Executable file

title description categories keywords menu weight toc
Figure Insert an HTML figure element into your content using the figure shortcode.
shortcodes
docs
parent weight
shortcodes
true

{{% note %}} To override Hugo's embedded figure shortcode, copy the [source code] to a file with the same name in the layouts/shortcodes directory.

[source code]: {{% eturl figure %}} {{% /note %}}

Example

With this markup:

{{</* figure
  src="/images/examples/zion-national-park.jpg"
  alt="A photograph of Zion National Park"
  link="https://www.nps.gov/zion/index.htm"
  caption="Zion National Park"
  class="ma0 w-75"
*/>}}

Hugo renders this HTML:

<figure class="ma0 w-75">
  <a href="https://www.nps.gov/zion/index.htm">
    <img 
      src="/images/examples/zion-national-park.jpg" 
      alt="A photograph of Zion National Park"
    >
  </a>
  <figcaption>
    <p>Zion National Park</p>
  </figcaption>
</figure>

Which looks like this in your browser:

{{< figure src="/images/examples/zion-national-park.jpg" alt="A photograph of Zion National Park" link="https://www.nps.gov/zion/index.htm" caption="Zion National Park" class="ma0 w-75"

}}

Parameters

src
(string) The src attribute of the img element. Typically this is a page resource or a global resource.
alt
(string) The alt attribute of the img element.
width
(int) The width attribute of the img element.
height
(int) The height attribute of the img element.
loading
(string) The loading attribute of the img element.
class
(string) The class attribute of the figure element.
link
(string) The href attribute of the anchor element that wraps the img element.
target
(string) The target attribute of the anchor element that wraps the img element.
rel
(rel) The rel attribute of the anchor element that wraps the img element.
title
(string) Within the figurecaption element, the title is at the top, wrapped within an h4 element.
caption
(string) Within the figurecaption element, the caption is at the bottom and may contain plain text or markdown.
attr
(string) Within the figurecaption element, the attribution appears next to the caption and may contain plain text or markdown.
attrlink
(string) The href attribute of the anchor element that wraps the attribution.

Image location

The figure shortcode resolves internal Markdown destinations by looking for a matching page resource, falling back to a matching global resource. Remote destinations are passed through, and the render hook will not throw an error or warning if unable to resolve a destination.

You must place global resources in the assets directory. If you have placed your resources in the static directory, and you are unable or unwilling to move them, you must mount the static directory to the assets directory by including both of these entries in your site configuration:

{{< code-toggle file=hugo >}} module.mounts source = 'assets' target = 'assets'

module.mounts source = 'static' target = 'assets' {{< /code-toggle >}}