HermitCollective.nix/sites/blog.hermitcollective.net/blog/themes/hugo-simple/layouts/shortcodes/highlight.html

11 lines
459 B
HTML
Raw Permalink Normal View History

2024-03-14 11:40:21 +00:00
<!-- https://github.com/jmooring/hugo-testing/blob/hugo-forum-topic-40998/layouts/_default/_markup/render-codeblock-katex.html -->
{{ .Page.Store.Set "hasCodeBlock" true }}
<!-- https://github.com/gohugoio/hugo/blob/master/tpl/tplimpl/embedded/templates/shortcodes/highlight.html -->
{{ if len .Params | eq 2 }}
{{ highlight (trim .InnerDeindent "\n\r") (.Get 0) (.Get 1) }}
{{ else }}
{{ highlight (trim .InnerDeindent "\n\r") (.Get 0) "" }}
{{ end }}