Details#
Details shortcode is a helper for details html5 element. To collapse the details either omit the open
keyword when using positional arguments or set open=false when using parameters.
Example with positional arguments#
{{% details "Title" [open] %}}
## Markdown content
Lorem markdownum insigne...
{{% /details %}}Title
Markdown content#
Lorem markdownum insigne…
Example with parameters#
{{% details title="Title" open=true %}}
## Markdown content
Lorem markdownum insigne...
{{% /details %}}Title
Markdown content#
Lorem markdownum insigne…