Created
June 5, 2022 11:22
-
-
Save moxak/202150a70a4679abdb3efe7a9cdd84c3 to your computer and use it in GitHub Desktop.
Hugo: layouts/_default/_markup/に設置するテンプレートファイル。コードブロックの名前を表示するdivタグを追加する。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
{{- $name := .Attributes.name -}} | |
{{ with $name }}<div class="codeblock--name">{{ . }}</div>{{ end }} | |
<div class="codeblock--content"> | |
{{- highlight (.Inner | safeHTML) .Type .Options }} | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment