hugo-theme-relearn/exampleSite/content/shortcodes/include.en.md
2021-08-28 10:08:10 +02:00

792 B

+++ description = "Displays content from other markdown files" title = "Include" +++

The include shortcode includes other files from your project inside of the current file. This can even contain markdown and will be taken into account when generating the table of contents.

Usage

{{%/* include "<file>" { "true" | "false" } */%}}

The first parameter is the path to the file to be included.

If the file's content will be displayed as HTML, the second optional parameter controls if the first heading of the included file should be displayed ("true")- which is the default - or be hidden.

Examples

Arbitray content

{{% include "shortcodes/INCLUDE_ME.md" %}}

{{% expand "Show markup" %}}

{{%/* include "shortcodes/INCLUDE_ME.md" */%}}

{{% /expand %}}