Files
paige-hugo/layouts/shortcodes/paige/code.html
2023-04-23 23:24:10 -07:00

10 lines
317 B
HTML

{{ $content := .Inner | replaceRE "^\n" "" }}
{{ $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>