Skip to content

Commit

Permalink
fix: use U+0020 instead of   No-Break Space
Browse files Browse the repository at this point in the history
  • Loading branch information
reuixiy committed Dec 17, 2019
1 parent 4aeb5e2 commit 46660e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions layouts/partials/minimal-footer-about.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{{- $icon := (index $.Site.Data.SVG $iconName) -}}
<a href="{{ .URL }}"{{ if eq $linkType "external" }} target="_blank" rel="external"{{ end }}>{{ replace $icon "icon" (printf `icon %s` .Identifier) | safeHTML }}{{ .Name }}</a>
{{- if lt $index $length -}}
&nbsp;
{{- print " " -}}
{{- end -}}
{{ end }}
</div>
Expand All @@ -23,7 +23,7 @@
{{- $icon := (index $.Site.Data.SVG $iconName) -}}
<a href="{{ .URL }}"{{ if eq $linkType "external" }} target="_blank" rel="external"{{ end }}>{{ replace $icon "icon" (printf `icon %s` .Identifier) | safeHTML }}{{ .Name }}</a>
{{- if lt $index $length -}}
&nbsp;
{{- print " " -}}
{{- end -}}
{{ end }}
</div>
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/minimal-footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{{- with $.Site.GetPage (printf `/tags/%s` $path) -}}
<a href="{{ .RelPermalink }}" rel="tag" class="post-tag-link">#{{ .Slug | default .LinkTitle | default $tag | lower | anchorize }}</a>
{{- if lt $index $length -}}
&nbsp;
{{- print " " -}}
{{- end -}}
{{- end -}}
{{- end -}}
Expand Down

0 comments on commit 46660e2

Please sign in to comment.