aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/shortcodes/spoiler.rss.xml
blob: 73dde8ab8a686746705d6f2ff804b03ef36f53c3 (plain)
1
2
3
4
5
6
7
8
{{- $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 }}

<s title="{{ $title }}"><label for="spoiler-text-{{ md5 $text }}">{{ $text | markdownify }}</label></s>