vodoraslo.xyz/layouts/_default/_markup/render-codeblock.html

22 lines
704 B
HTML
Raw Permalink Normal View History

{{ if transform.CanHighlight .Type }}
{{/* Supported Chroma Language*/}}
<div class="highlight">
{{ with .Attributes.title }}
<div class="highlight-title"><span>{{ . }}</span></div>
{{ end }}
<pre tabindex="0" class="chroma"><code class="language-{{ .Type }}" data-lang="{{ .Type }}">
{{- with transform.HighlightCodeBlock . -}}
{{ .Inner }}
{{- end -}}
</code></pre></div>
{{ else }}
{{/* Unsupported Language */}}
<div class="highlight">
{{ with .Attributes.title }}
<div class="highlight-title"><span>{{ . }}</span></div>
{{ end }}
<pre tabindex="0"><code class="language-{{ .Type }}" data-lang="{{ .Type }}">{{ .Inner }}</code></pre>
</div>
{{ end }}