Files
paige-hugo/layouts/shortcodes/paige/code.html
2025-02-08 23:13:56 -08:00

15 lines
486 B
HTML

{{ $content := .InnerDeindent | strings.TrimLeft "\f\n\r\v" | strings.TrimRight "\f\n\r\t\v " }}
{{ $lang := .Get 0 | default (.Get "lang") | default "plaintext" }}
{{ $options := .Get "options" }}
{{ $unescape := .Get "unescape" }}
{{ if not $content }}
{{ errorf "layouts/shortcodes/paige/code.html: no content" }}
{{ end }}
{{ if $unescape }}
{{ $content = htmlUnescape $content }}
{{ end }}
<div class="paige-shortcode-code">{{ highlight $content $lang $options }}</div>