NotroTail

Sample 08: Toggles

Notion toggle blocks rendered as <details>/<summary>.

Click to expand: Basic Toggle
This is the content inside the toggle. It can contain any Markdown.
- List item inside toggle
- Another item
Toggle with Code
```typescript

const x = 42; console.log(x); ```

Nested Toggle (outer)
Outer content here.
<details>
<summary>Inner Toggle</summary>

	Inner content here.
</details>