<details>
<summary>see this long example - click to expand </summary>
You can use regular markdown formatting inside your collapsed section.
### Heading
1. Foo
2. Bar
* Baz
* Qux
### Some Code
```js
function logSomething(something) {
console.log('Something', something);
}
```
</details>see this long example - click to expand
You can use regular markdown formatting inside your collapsed section.
- Foo
- Bar
- Baz
- Qux
function logSomething(something) {
console.log('Something', something);
}- Have an empty line after the
</summary>tag or markdown/code blocks will not render. - Have an empty line after each
</details>tag if you have multiple collapsible sections.