trwnh.com/unified.test.hugo/layouts/_default/_markup/render-codeblock.html

5 lines
186 B
HTML
Raw Normal View History

{{ $opts := merge .Options (dict "hl_inline" true) }}
{{ $result := transform.HighlightCodeBlock . }}
2024-10-12 18:45:14 +00:00
<div class="codeblock highlight">
<pre class="chroma">{{$result.Inner}}</pre>
</div>