Different thing: what is the mark-up syntax for inserting this collapsible code?
Ah… figured it out
<details>
<summary> Click </summary>
...test
</details>
Different thing: what is the mark-up syntax for inserting this collapsible code?
Ah… figured it out
<details>
<summary> Click </summary>
...test
</details>
It’s the HTML <details>
, optionally with a <summary>
section.
This stuff is hidden. Here’s how I wrote this block:
<details>
<summary> See the magic here </summary>
This stuff is hidden. Here's how I wrote this block:
```html
<!-- ... and recurse ... -->
```
</details>