website/layouts/partials/helpers/svg.html

7 lines
264 B
HTML
Raw Normal View History

2023-05-21 20:39:56 +00:00
{{ $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) }}