Expand
Arrr! Pirrrates
Fello' pirrates, be awarrre some featurrres may not work fer us in this trrranslat'n. Like table of rrramblings, some Merrrmaids and stuff.
Th' expand
shorrrtcode displays an expandable/collaps'ble section o' text.
Usage
While th' examples be us'n shorrrtcodes wit' named parameter ye be free t' use positional aswell or also call this shorrrtcode from yer own partials.
{{% expand title="Expand me..." %}}Thank ye!{{% /expand %}}
{{% expand "Expand me..." %}}Thank ye!{{% /expand %}}
{{ partial "shortcodes/expand.html" (dict
"context" .
"title" "Expand me..."
"content" "Thank ye!"
)}}
Parameter
Name | Posit'n | Default | Notes |
---|---|---|---|
title | 1 | "Expand me..." |
Arbitray text t' appear next t' th' expand/collapse ay'con. |
open | 2 | false |
When true th' rrrambl'n text will be initially shown as expanded. |
<content> | <empty> | Arbitray text t' be displayed on expand. |
Examples
All Defaults
{{% expand %}}Yes, ye did it!{{% /expand %}}
Initially Expanded
{{% expand title="Expand me..." open="true" %}}No need t' press ye!{{% /expand %}}
Arbitrary Text
{{% expand title="Show me almost endless possibilities" %}}
Ye can add standard markdown rules:
- multiple paragraphs
- bullet point lists
- _emphasized_, **bold** an' even **_bold emphasized_** text
- [links](https://example.com)
- etc.
```plaintext
...and even source code
```
> th' possiblities be endless (almost - includ'n other shorrrtcodes may or may not work)
{{% /expand %}}