website/layouts/partials/helpers/svg.html
2023-05-21 22:39:56 +02:00

7 lines
264 B
HTML

{{ $svg := .path }}
{{ $match := `<svg (.*)>((\s|\S)*)</svg>` }}
{{ $replaceWith := printf `<svg class="%s" ${1}>${2}</svg>` .class }}
{{ $input := (printf "/assets/images/%s.svg" $svg | readFile) }}
{{ return (replaceRE $match $replaceWith $input | safeHTML) }}