-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: details shortcode * docs: add details shortcode page * chore: update shortcodes page * docs: update * Revert "chore: update shortcodes page" This reverts commit c005ad4.
- Loading branch information
Showing
5 changed files
with
118 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
title: Details | ||
--- | ||
|
||
A built-in component to display a collapsible content. | ||
|
||
<!--more--> | ||
|
||
## Example | ||
|
||
{{% details title="Details" %}} | ||
|
||
This is the content of the details. | ||
|
||
Markdown is **supported**. | ||
|
||
{{% /details %}} | ||
|
||
{{% details title="Click me to reveal" closed="true" %}} | ||
|
||
This will be hidden by default. | ||
|
||
{{% /details %}} | ||
|
||
## Usage | ||
|
||
```` | ||
{{%/* details title="Details" */%}} | ||
This is the content of the details. | ||
Markdown is **supported**. | ||
{{%/* /details */%}} | ||
```` | ||
|
||
```` | ||
{{%/* details title="Click me to reveal" closed="true" */%}} | ||
This will be hidden by default. | ||
{{%/* /details */%}} | ||
```` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters