<description>The children shortcode lists the child pages of a page and its descendants .
Usage {{% children %}} Parameter Name Default Notes page &lt;current&gt; Specify the page name (section name) to display children for. containerstyle ul Choose the style used to group all children. It could be any HTML tag name. style li Choose the style used to display each descendant. It could be any HTML tag name. showhidden false When true, child pages hidden from the menu will be displayed aswell.</description>
Usage {{&lt; swagger src=&#34;https://petstore3.swagger.io/api/v3/openapi.json&#34; &gt;}} Parameter Name Default Notes src &lt;empty&gt; The URL to the OpenAPI Specification file. This can be relative to the URL of your page if it is a leaf or branch bundle. Configuration Swagger is configured with default settings. You can customize Swagger&rsquo;s default settings for all of your files thru a JSON object in your config.</description>
Get Hugo Get Hugo Usage {{% button href=&#34;https://gohugo.io/&#34; %}}Get Hugo{{% /button %}} {{% button href=&#34;https://gohugo.io/&#34; style=&#34;warning&#34; icon=&#34;dragon&#34; %}}Get Hugo{{% /button %}} Once the button is clicked, it opens another browser tab for the given URL.
Parameter Name Default Notes href &lt;empty&gt; The destination URL for the button. If this parameter is not set, the button will do nothing but is still displayed as clickable.</description>
<description>The expand shortcode displays an expandable/collapsible section of text.
Expand me... Thank you! Usage While the examples are using named parameter you are free to use positional aswell.
named positional {{% expand title=&#34;Expand me...&#34; %}}Thank you!{{% /expand %}} {{% expand &#34;Expand me...&#34; %}}Thank you!{{% /expand %}} Parameter Name Position Default Notes title 1 &quot;Expand me...&quot; Arbitray text to appear next to the expand/collapse icon. open 2 false When true the content text will be initially shown as expanded.</description>
<description>The include shortcode includes other files from your project inside of the current page.
Usage While the examples are using named parameter you are free to use positional aswell.
named positional {{% include file=&#34;shortcodes/INCLUDE_ME.md&#34; %}} {{% include &#34;shortcodes/INCLUDE_ME.md&#34; %}} The included files can even contain Markdown and will be taken into account when generating the table of contents.
Parameter Name Position Default Notes file 1 &lt;empty&gt; The path to the file to be included.</description>
Warning Due to limitations with Mermaid, it is currently not possible to use Mermaid code fences in an initially collapsed expand shortcode. This is a know issue and can&rsquo;t be fixed by this theme.
Usage While the examples are using named parameter you are free to use positional aswell.
named positional {{% notice style=&#34;primary&#34; title=&#34;There may be pirates&#34; icon=&#34;skull-crossbones&#34; %}} It is all about the boxes. {{% /notice %}} {{% notice primary &#34;There may be pirates&#34; &#34;skull-crossbones&#34; %}} It is all about the boxes.</description>
<description>The siteparam shortcode prints values of site params.
Usage While the examples are using named parameter you are free to use positional aswell.
named positional {{% siteparam name=&#34;editURL&#34; %}} {{% siteparam &#34;editURL&#34; %}} Parameter Name Position Default Notes name 1 &lt;empty&gt; The name of the site param to be displayed. Examples editURL from config.toml `editURL` value: {{% siteparam name=&#34;editURL&#34; %}} editURL value: https://github.com/McShelby/hugo-theme-relearn/edit/main/exampleSite/content/</description>
<description>The tabs shortcode displays arbitrary content in unlimited number of tabs. This comes in handy eg. for providing code snippets for multiple languages or providing configuration in different formats.
python bash print(&#34;Hello World!&#34;) echo &#34;Hello World!&#34; Usage {{&lt; tabs &gt;}} {{% tab name=&#34;python&#34; %}} ```python print(&#34;Hello World!&#34;) ``` {{% /tab %}} {{% tab name=&#34;bash&#34; %}} ```bash echo &#34;Hello World!&#34; ``` {{% /tab %}} {{&lt; /tabs &gt;}} Parameter Name Default Notes groupId default Arbitrary name of the group the tab view belongs to.</description>