Toggles
{{</* spoiler text="Click to view the spoiler" */>}}You found me!
Markdown is **supported**.{{</* /spoiler */>}}Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
text | string | Required. The clickable trigger text |
The content between the opening and closing tags supports full Markdown.
Examples
Section titled “Examples”FAQ Pattern
Section titled “FAQ Pattern”{{</* spoiler text="What is Ownable?" */>}}Ownable is an open-source website builder powered by Hugo.{{</* /spoiler */>}}
{{</* spoiler text="Is it free?" */>}}Yes! Ownable is free and open-source.{{</* /spoiler */>}}Code Inside
Section titled “Code Inside”{{</* spoiler text="View the solution" */>}}```pythondef fibonacci(n): if n <= 1: return n return fibonacci(n-1) + fibonacci(n-2)```{{</* /spoiler */>}}