[details]
Creates an interactive widget that user can open and close. Uses HTML <details>
tag (https://www.w3schools.com/tags/tag_details.asp).
Attributes
- summary
- (required) Visible heading. The heading can be clicked to view/hide the details.
- Default: None
Examples
Example
[details summary="Show Text"]<p>This text will be hidden, until the user clicks on summary.</p>[/details]
Output
Show Text
This text will be hidden, until the user clicks on summary.
No comments yet.