aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/shortcodes/abbr.html
blob: bad8895e0519484d5a26be5c7dbbfe063c88ac48 (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)) -}}
{{- $hash  := print (truncate 8 "" (sha256 $abbr)) .Ordinal -}}

<input hidden type="checkbox" id="abbr-{{ $hash }}" />
{{- /* This comment removes trailing newlines and white spaces. */ -}}
<abbr title="{{ $title }}"><label for="abbr-{{ $hash }}">{{ $abbr | markdownify }}</label></abbr>
{{- /* This comment removes trailing newlines and white spaces. */ -}}