forked from drowl87/hextra_mirror

* refactor: move codeblock to a partial component * feat: add flags for code block copy button * allow disable code copy button completely * allow make the copy button always visible * chore: run build:css
13 lines
564 B
HTML
13 lines
564 B
HTML
{{- $class := .Attributes.class | default "" -}}
|
|
{{- $filename := .Attributes.filename | default "" -}}
|
|
{{- $lang := .Attributes.lang | default .Type -}}
|
|
|
|
|
|
<div class="hextra-code-block hx-relative hx-mt-6 first:hx-mt-0 hx-group/code">
|
|
{{ partial "components/codeblock" (dict "filename" $filename "lang" $lang "content" .Inner "options" .Options) }}
|
|
|
|
{{- if or (eq site.Params.highlight.copy.enable nil) (site.Params.highlight.copy.enable) }}
|
|
{{- partialCached "components/codeblock-copy-button" (dict "filename" $filename) $filename }}
|
|
{{ end }}
|
|
</div>
|