hugo-theme-relearn/exampleSite/content/shortcodes/expand.en.md

88 lines
2.2 KiB
Markdown
Raw Normal View History

2017-08-20 15:10:29 +00:00
---
title : Expand
description : "Displays an expandable/collapsible section of text on your page"
---
The Expand shortcode displays an expandable/collapsible section of text on your page.
2021-07-16 20:35:20 +00:00
## Usage
````
{{%/*expand "Does this relearn theme rock?" */%}}
Yes!
{{%/* /expand*/%}}
````
This shortcode takes one optional parameter to define the text that appears next to the expand/collapse icon. The default text is *"Expand me..."*.
## Examples
### Default text
2017-08-20 15:10:29 +00:00
{{%expand%}}
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
2021-07-16 20:35:20 +00:00
{{% /expand%}}
{{% expand "Show markup" %}}
````
{{%/* expand */%}}
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{%/* /expand */%}}
````
{{% /expand%}}
2017-08-20 15:10:29 +00:00
2021-07-16 20:35:20 +00:00
### Arbitrary text
2017-08-20 15:10:29 +00:00
2021-07-16 20:35:20 +00:00
{{%expand "Show me endless possibilities" %}}
Some expandable text.
2017-08-20 15:10:29 +00:00
2021-07-16 20:35:20 +00:00
You can add:
2017-08-20 15:10:29 +00:00
2021-07-16 20:35:20 +00:00
- multiple paragraphs
- bullet point lists
- *emphasized*, **bold** and even ***bold emphasized*** text
- [links](https://example.com)
- other shortcodes besides `expand`
- etc.
2017-08-20 15:10:29 +00:00
2021-07-16 20:35:20 +00:00
```
...and even source code
```
2017-08-20 15:10:29 +00:00
2021-07-16 20:35:20 +00:00
> the possiblities are endless
{{% /expand%}}
2017-08-20 15:10:29 +00:00
2021-07-16 20:35:20 +00:00
{{% expand "Show markup" %}}
````
{{%/* expand "Show me endless possibilities" */%}}
Some expandable text.
2017-08-20 15:10:29 +00:00
2021-07-16 20:35:20 +00:00
You can add:
2017-08-20 15:10:29 +00:00
2021-07-16 20:35:20 +00:00
- multiple paragraphs
- bullet point lists
- *emphasized*, **bold** and even ***bold emphasized*** text
- [links](https://example.com)
- other shortcodes besides `expand`
- etc.
```
...and even source code
```
> the possiblities are endless
{{%/* /expand */%}}
````
{{% /expand%}}
2017-08-20 15:10:29 +00:00