hugo-theme-relearn/exampleSite/content/authoring/frontmatter/linking/index.en.md
Sören Weber e4e750c1cc
docs: chapter 3 content-complete #567
add other stuff
2024-10-12 18:38:04 +02:00

1.7 KiB

+++ description = "What options are available for links and images" frontmatter = ["externalLinkTarget", "image.errorlevel", "link.errorlevel"] options = ["externalLinkTarget", "image.errorlevel", "link.errorlevel"] title = "Linking" weight = 3 +++

{{% badge style="cyan" icon="gears" title=" " %}}Option{{% /badge %}} {{% badge style="green" icon="fa-fw fab fa-markdown" title=" " %}}Front Matter{{% /badge %}} By default, external links open in a new tab. To change this, use the externalLinkTarget setting with a proper link target.

For example, this will open links in the same tab

{{< multiconfig fm=true >}} externalLinkTarget = '_self' {{< /multiconfig >}}

{{% badge style="cyan" icon="gears" title=" " %}}Option{{% /badge %}} {{% badge style="green" icon="fa-fw fab fa-markdown" title=" " %}}Front Matter{{% /badge %}} You can use link.errorlevel and image.errorlevel to control what should happen if a local link can not be resolved to a resource.

If not set or empty, any unresolved link is written as given into the resulting output. If set to warning the same happens and an additional warning is printed in the built console. If set to error an error message is printed and the build is aborted.

Please note that this can not resolve files inside of your static directory. The file must be a resource of the page or the site.

Link warnings are also available for the include and openapi shortcodes.

{{< multiconfig fm=true >}} link.errorlevel = 'warning' image.errorlevel = 'warning' {{< /multiconfig >}}