xiv.zone/themes/mytheme/layouts/partials/svg.html
2022-04-08 20:41:15 -04:00

6 lines
No EOL
266 B
HTML

{{ $svg := . }}
{{ $class := print $svg "-icon" }}
{{ $match := "<svg (.*)?>(.*)</svg>" }}
{{ $replaceWith := printf `<svg class="%s" ${1}>${2}</svg>` $class }}
{{ return (replaceRE $match $replaceWith (printf "/static/images/%s.svg" $svg | readFile) | safeHTML) }}