Files
paige-hugo/layouts/shortcodes/paige/code.html
2024-07-08 12:20:34 -07:00

10 lines
320 B
HTML

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