aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/shortcodes/abbr.html
blob: 0edff4344c8b59959e819de8432918e42ea1ac1a (plain)
1
2
3
4
5
6
7
{{- $abbr  := default "TL;DR:"                (.Get "abbr"  | default (.Get 0)) -}}
{{- $title := default "Too long, didn't read" (.Get "title" | default (.Get 1)) -}}

{{- $id := delimit (shuffle (seq 0 20)) "" -}}
<input hidden type="checkbox" id="abbr-{{ $id }}" />
<abbr title="{{ $title }}"><label for="abbr-{{ $id }}">{{ $abbr | markdownify }}</label></abbr>
{{- /* This comment removes trailing newlines and white spaces. */ -}}