ref: 8aa90f2b7e83c748170109eb94169e5222c1755a
parent: ccd2f4c32b77c9b722943a96b5d5af99cd7b1712
author: Bjørn Erik Pedersen <[email protected]>
date: Thu Mar 3 17:01:09 EST 2016
Try both prepped and unprepped taxonomy keys Fixes #1869
--- a/hugolib/taxonomy.go
+++ b/hugolib/taxonomy.go
@@ -63,8 +63,14 @@
return helpers.MakePathSanitized(in)
}
-func (i Taxonomy) Get(key string) WeightedPages { return i[kp(key)] }
-func (i Taxonomy) Count(key string) int { return len(i[kp(key)]) }
+func (i Taxonomy) Get(key string) WeightedPages {
+ if val, ok := i[key]; ok {
+ return val
+ }
+ return i[kp(key)]
+}
+
+func (i Taxonomy) Count(key string) int { return len(i[kp(key)]) }
func (i Taxonomy) Add(key string, w WeightedPage, pretty bool) {
if !pretty {
key = kp(key)