hugo-bearcub/layouts/shortcodes/code.html

7 lines
198 B
HTML
Raw Normal View History

{{ .Page.Store.Set "hasCodeBlock" true }}
{{ $lang := .Get "language" | default "" }}
{{ with .Get "title" }}
<p><strong>{{ . }}</strong></p>
{{ end }}
{{ highlight (trim .Inner "\r\n") $lang "" }}