Files
2026-06-20 09:37:49 -04:00

17 lines
249 B
Typst

#let collapsible(summary: [], open: false, name: "", content) = context {
if target() != "html" {
summary
content
return
}
html.details(
name: name,
open: open,
{
html.summary(summary)
content
},
)
}