2021-08-25 11:33:29 +00:00
+++
2022-06-05 17:31:59 +00:00
description = "Expandable/collapsible sections of text"
2021-08-25 11:33:29 +00:00
title = "Expand"
+++
2017-08-20 15:10:29 +00:00
2022-06-05 17:31:59 +00:00
The `expand` shortcode displays an expandable/collapsible section of text.
2023-05-31 21:44:27 +00:00
{{% expand title="Expand me..." %}}Thank you!
That's some text with a footnote[^1]
[^1]: And that's the footnote.
That's some more text with a footnote.[^someid]
[^someid]:
Anything of interest goes here.
Blue light glows blue.
{{% /expand %}}
2021-07-16 20:35:20 +00:00
## Usage
2023-07-27 15:02:13 +00:00
{{< tabs groupid = "shortcode-parameter" > }}
2023-06-05 21:20:37 +00:00
{{% tab title="shortcode" %}}
2022-06-05 17:31:59 +00:00
2021-08-23 21:32:34 +00:00
````go
2022-06-05 17:31:59 +00:00
{{%/* expand title="Expand me..." */%}}Thank you!{{%/* /expand */%}}
2021-07-16 20:35:20 +00:00
````
2022-06-05 17:31:59 +00:00
{{% /tab %}}
2023-06-05 21:20:37 +00:00
{{% tab title="shortcode (positional)" %}}
2021-07-16 20:35:20 +00:00
2022-06-05 17:31:59 +00:00
````go
{{%/* expand "Expand me..." */%}}Thank you!{{%/* /expand */%}}
````
2021-07-16 20:35:20 +00:00
2022-06-22 22:03:24 +00:00
{{% /tab %}}
2023-06-05 21:20:37 +00:00
{{% tab title="partial" %}}
2022-06-22 22:03:24 +00:00
````go
{{ partial "shortcodes/expand.html" (dict
2023-07-27 14:14:55 +00:00
"page" .
2022-06-22 22:03:24 +00:00
"title" "Expand me..."
"content" "Thank you!"
)}}
````
2022-06-05 17:31:59 +00:00
{{% /tab %}}
{{< / tabs > }}
2021-09-03 22:50:08 +00:00
2024-10-07 06:31:28 +00:00
The [`notice` shortcode ](shortcodes/notice ) is also capable of displaying expandable/collapsible sections of text but with color options.
2024-10-04 23:49:00 +00:00
2022-06-05 17:31:59 +00:00
### Parameter
2017-08-20 15:10:29 +00:00
2022-06-05 17:31:59 +00:00
| Name | Position | Default | Notes |
2023-07-27 14:07:01 +00:00
|-----------------------|----------|------------------|-------------|
2022-10-31 11:10:36 +00:00
| **title** | 1 | `"Expand me..."` | Arbitrary text to appear next to the expand/collapse icon. |
2024-09-01 11:57:50 +00:00
| **expanded** | 2 | `false` | How the content is displayed.< br >< br > - `true` : the content is initially shown< br > - `false` : the content is initially hidden |
2022-10-31 11:10:36 +00:00
| _**<content>**_ | | _<empty>_ | Arbitrary text to be displayed on expand. |
2022-06-05 17:31:59 +00:00
## Examples
### All Defaults
2021-07-16 20:35:20 +00:00
2021-08-23 21:32:34 +00:00
````go
2022-06-05 17:31:59 +00:00
{{%/* expand */%}}Yes, you did it!{{%/* /expand */%}}
2021-07-16 20:35:20 +00:00
````
2021-07-16 21:51:11 +00:00
2022-06-05 17:31:59 +00:00
{{% expand %}}Yes, you did it!{{% /expand %}}
2021-07-16 21:51:11 +00:00
2022-06-05 17:31:59 +00:00
### Initially Expanded
2021-07-16 21:51:11 +00:00
2021-08-23 21:32:34 +00:00
````go
2024-09-01 11:57:50 +00:00
{{%/* expand title="Expand me..." expanded="true" */%}}No need to press you!{{%/* /expand */%}}
2021-07-16 21:51:11 +00:00
````
2017-08-20 15:10:29 +00:00
2024-09-01 11:57:50 +00:00
{{% expand title="Expand me..." expanded="true" %}}No need to press you!{{% /expand %}}
2017-08-20 15:10:29 +00:00
2022-06-05 17:31:59 +00:00
### Arbitrary Text
2017-08-20 15:10:29 +00:00
2022-06-05 17:31:59 +00:00
````go
2023-03-14 20:48:18 +00:00
{{%/* expand title="Show me almost **endless** possibilities" */%}}
2022-05-23 12:59:24 +00:00
You can add standard markdown syntax:
2017-08-20 15:10:29 +00:00
2021-07-16 20:35:20 +00:00
- multiple paragraphs
- bullet point lists
2021-07-26 08:10:10 +00:00
- _emphasized_, **bold** and even **_bold emphasized_** text
2021-07-16 20:35:20 +00:00
- [links ](https://example.com )
- etc.
2017-08-20 15:10:29 +00:00
2021-08-23 21:32:34 +00:00
```plaintext
2021-07-16 20:35:20 +00:00
...and even source code
```
2017-08-20 15:10:29 +00:00
2022-10-31 11:10:36 +00:00
> the possibilities are endless (almost - including other shortcodes may or may not work)
2022-06-05 17:31:59 +00:00
{{%/* /expand */%}}
````
2017-08-20 15:10:29 +00:00
2023-03-14 20:48:18 +00:00
{{% expand title="Show me almost **endless** possibilities" %}}
2022-05-23 12:59:24 +00:00
You can add standard markdown syntax:
2017-08-20 15:10:29 +00:00
2021-07-16 20:35:20 +00:00
- multiple paragraphs
- bullet point lists
2021-07-26 08:10:10 +00:00
- _emphasized_, **bold** and even **_bold emphasized_** text
2021-07-16 20:35:20 +00:00
- [links ](https://example.com )
- etc.
2021-08-23 21:32:34 +00:00
```plaintext
2021-07-16 20:35:20 +00:00
...and even source code
```
2022-10-31 11:10:36 +00:00
> the possibilities are endless (almost - including other shortcodes may or may not work)
2021-07-16 21:51:11 +00:00
{{% /expand %}}