Skip to content

Instantly share code, notes, and snippets.

@maxrodrigo
Created April 29, 2020 16:01
Show Gist options
  • Save maxrodrigo/34996d1ea036555edb9b692d496fab19 to your computer and use it in GitHub Desktop.
Save maxrodrigo/34996d1ea036555edb9b692d496fab19 to your computer and use it in GitHub Desktop.
Details disclosure and summary elements hugo shortcode.
{{ .Scratch.Set "lastp" (sub (.Params | len) 1) }}
<details {{ if .Get 0 | eq "open"}} open {{ end }}>
<summary>
{{ .Get (.Scratch.Get "lastp") }}
</summary>
{{ .Inner | markdownify }}
</details>
@maxrodrigo
Copy link
Author

That's great!
Thanks!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment