fix(icon): trim white spaces

This commit is contained in:
ZhenShuo Leo
2025-07-25 05:12:51 +08:00
parent ec912c4a92
commit 54a643d703
2 changed files with 12 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
{{ $icon := resources.Get (print "icons/" . ".svg") }} {{- $icon := resources.Get (print "icons/" . ".svg") -}}
{{ if $icon }} {{- if $icon -}}
<span class="relative block icon"> <span class="relative block icon">
{{ $icon.Content | safeHTML }} {{- $icon.Content | safeHTML -}}
</span> </span>
{{ end }} {{- end -}}

View File

@@ -1,8 +1,10 @@
{{ $icon := resources.Get (printf "icons/%s.svg" ($.Get 0)) }} {{- /* Avoid extra whitespace */ -}}
{{ if $icon }} {{- /* https://discourse.gohugo.io/t/55399/5 */ -}}
{{- $icon := resources.Get (printf "icons/%s.svg" ($.Get 0)) -}}
{{- if $icon -}}
<span class="relative inline-block align-text-bottom icon"> <span class="relative inline-block align-text-bottom icon">
{{ $icon.Content | safeHTML }} {{- strings.Replace $icon.Content "\n" "" | safeHTML -}}
</span> </span>
{{ else }} {{- else -}}
{{ errorf `[BLOWFISH] Shortcode "icon" error in "%s": Resource "%s" not found. Check the path is correct or remove the shortcode.` .Page.Path (printf "icons/%s.svg" ($.Get 0)) }} {{- errorf `icon shortcode: resource "%s" not found. Check the path is correct or remove the shortcode: %s` (printf "icons/%s.svg" ($.Get 0)) .Position -}}
{{ end }} {{- end -}}