HTML tags <details> and <summary> can be used for expand/collapse with disclosure triangles for 'collapsible HTML'
Pontifications
- following up on Checkvist seems like a great omnioutliner on the web cross platform replacment except for html export which doesn’t implement expand and collapse unlike omnioutliner:
- Not sure if this works outside of github, i.e. if i need CSS but the following markdown from collapsible markdown works on github
## collapsible markdown?
<details><summary>CLICK ME</summary>
<p>
#### yes, even hidden code blocks!
```python
print("hello world!")
\`\`\`
</p>
</details>
- sounds like I or somebody else could easily (ha! for some definition of easy!) write a script to take checkvist markdown and convert it to “collapsible html” using the <details> and <summary> HTML tags