hugolib: Normalize permalink path segments
authorCameron Moore <moorereason@gmail.com>
Fri, 21 Sep 2018 19:03:17 +0000 (14:03 -0500)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 3 Oct 2018 08:02:15 +0000 (11:02 +0300)
commitfae48d7457de96969ec53349194dcbfa45adc269
treeb587bfb85093c90049a57a7091a01a4193a3c3c2
parent06d28a464d086880f52dd850f91e668ab957b31f
hugolib: Normalize permalink path segments

When constructing permalinks, ensure that most inputs used as path
segments are normalized with PathSpec.MakeSegment instead of
PathSpec.URLize.

The primary exception to that rule is with taxonomy titles in
pageToPermalinkTitle(). The approach taken here is to use URLize for
taxonomy pages. Everything else will use MakeSegment. The reason for
this exception is that people use taxonomies such as "s1/p1" to generate
URLs precisely they way they wish (see #5223). Tests have been added to
check for this case.

Fixes #4926
hugolib/permalinks.go
hugolib/permalinks_test.go
hugolib/taxonomy_test.go