aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/shortcodes/abbr.html
blob: 52e3ff91b48288ae8466a7107417e6bd71f8770b (plain)
1
2
3
4
5
6
7
8
{{- $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 }}" />
{{- /* This comment removes trailing newlines and white spaces. */ -}}
<abbr title="{{ $title }}"><label for="abbr-{{ $id }}">{{ $abbr | markdownify }}</label></abbr>
{{- /* This comment removes trailing newlines and white spaces. */ -}}