aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/shortcodes/spoiler.html
blob: 926787625f6fd1e4b794562cd194e2f387d9b853 (plain)
1
2
3
4
5
6
7
8
9
{{- $text  := default "This is a spoiler."        (.Get "text"  | default (.Get 0)) -}}
{{- $title := default "Click to show/hide text."  (.Get "title" | default (.Get 1)) -}}

{{ if gt (len .Inner) 1 }}
  {{ $text = .Inner }}
{{ end }}

<input hidden type="checkbox" id="spoiler-text-{{ md5 $text }}" />
<s title="{{ $title }}"><label for="spoiler-text-{{ md5 $text }}">{{ $text | markdownify }}</label></s>