1
0
Fork 0
mirror of https://github.com/dillonzq/LoveIt.git synced 2025-04-27 06:06:20 +02:00

feat(hook): add code block hook goat

This commit is contained in:
Dillon 2025-03-19 08:47:34 +08:00
parent 859f574511
commit c726bafc35

View file

@ -0,0 +1,16 @@
{{ $width := .Attributes.width }}
{{ $height := .Attributes.height }}
{{ $class := .Attributes.class | default "" }}
<div class="goat svg-container {{ $class }}">
{{ with diagrams.Goat .Inner }}
<svg xmlns="http://www.w3.org/2000/svg" font-family="Menlo,Lucida Console,monospace"
{{ if or $width $height }}
{{ with $width }} width="{{ . }}"{{ end }}
{{ with $height }} height="{{ . }}"{{ end }}
{{ else }}
viewBox="0 0 {{ .Width }} {{ .Height }}"
{{ end }}>
{{ .Inner }}
</svg>
{{ end }}
</div>