Files
paige-hugo/layouts/shortcodes/paige/code.html
2023-01-21 23:43:52 -08:00

11 lines
297 B
HTML

{{ $caption := .Get "caption" }}
{{ $lang := .Get 0 | default (.Get "lang") | default "plaintext" }}
{{ $options := .Get "options" }}
{{ $content := highlight (.Inner | replaceRE "^\n" "") $lang $options }}
{{ partial "paige/figure.html" (dict
"caption" $caption
"content" $content
) }}