aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/shortcodes/spoiler.rss.xml
blob: adbce7bcb68807bf9ad10fa6f762cac75e38f00b (plain)
1
2
3
4
5
6
7
8
9
10
{{- $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>{{ $text | markdownify }}</label>
</s>