hugo-theme-more-contentful/assets/templates/heroicon.svg

9 lines
334 B
XML
Raw Normal View History

{{- /*
This template applies an ID to an SVG from the Heroicons set to be used with `<use>` element.
*/ -}}
2022-10-24 04:59:05 +00:00
{{- $match := "^\\s*<svg (.*)?>" }}
2022-10-23 16:08:28 +00:00
{{- $icon := resources.Get (printf "svg/heroicons/24/solid/%s.svg" .) }}
2022-10-24 04:59:05 +00:00
{{- $replaceWith := printf `<svg id="%s" ${1}>` . }}
2022-10-24 04:59:05 +00:00
{{- replaceRE $match $replaceWith $icon.Content | safeHTML -}}