Correctly escape multi-word taxonomy terms in example

This commit is contained in:
Ross Light
2019-01-18 14:38:46 -08:00
committed by Kaushal Modi
parent 2dfeeda45e
commit 7cff379f58
+1 -1
View File
@@ -238,7 +238,7 @@ Because we are leveraging the front matter system to define taxonomies for conte
<ul id="{{ $taxo }}">
{{ range .Param $taxo }}
{{ $name := . }}
{{ with $.Site.GetPage (printf "/%s/%s" $taxo $name) }}
{{ with $.Site.GetPage (printf "/%s/%s" $taxo ($name | urlize)) }}
<li><a href="{{ .Permalink }}">{{ $name }}</a></li>
{{ end }}
{{ end }}