From 8aa90f2b7e83c748170109eb94169e5222c1755a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Thu, 3 Mar 2016 22:01:09 +0100 Subject: [PATCH] Try both prepped and unprepped taxonomy keys Fixes #1869 --- hugolib/taxonomy.go | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/hugolib/taxonomy.go b/hugolib/taxonomy.go index d7ed3f96d..ce96f9ba0 100644 --- a/hugolib/taxonomy.go +++ b/hugolib/taxonomy.go @@ -63,8 +63,14 @@ func kp(in string) string { 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)