{{/* https://discourse.gohugo.io/t/documentation-for-code-block-render-hooks/37610/3 */}} {{ $class := .Attributes.class | default "" }} {{ $lang := .Attributes.lang | default .Type }} {{ $opts := .Options | default dict }}
{{ with $.Page.Site.Params.page.codeBlockCopible }}
{{ end }} {{ if transform.CanHighlight $lang }} {{ highlight .Inner $lang $opts }} {{ else }}
{{ .Inner }}
{{ end }}