Add '+' as one of the valid characters in urls specified in the front matter
authorAditya Bhargava <bluemangroupie@gmail.com>
Sat, 12 Mar 2016 23:48:21 +0000 (15:48 -0800)
committerSteve Francia <steve.francia@gmail.com>
Mon, 21 Mar 2016 22:48:50 +0000 (18:48 -0400)
Fixes #1290

helpers/path.go
helpers/path_test.go

index d9efeb24e79c42d602fa0d85333e6fba991e144f..f39815b6e5d2324ee71cc3a8bbf7a4ee5d4f2d57 100644 (file)
@@ -95,7 +95,7 @@ func UnicodeSanitize(s string) string {
        target := make([]rune, 0, len(source))
 
        for _, r := range source {
-               if unicode.IsLetter(r) || unicode.IsDigit(r) || unicode.IsMark(r) || r == '%' || r == '.' || r == '/' || r == '\\' || r == '_' || r == '-' || r == '#' {
+               if unicode.IsLetter(r) || unicode.IsDigit(r) || unicode.IsMark(r) || r == '%' || r == '.' || r == '/' || r == '\\' || r == '_' || r == '-' || r == '#' || r == '+' {
                        target = append(target, r)
                }
        }
index 53848b0b59d649656ec2b6db14e3284d187e360f..ddb1b99c6cf9a3cf33f0ecdbc4d184f2eb0d133e 100644 (file)
@@ -48,6 +48,7 @@ func TestMakePath(t *testing.T) {
                // Issue #1488
                {"संस्कृत", "संस्कृत", false},
                {"a%C3%B1ame", "a%C3%B1ame", false}, // Issue #1292
+               {"this+is+a+test", "this+is+a+test", false}, // Issue #1290
        }
 
        for _, test := range tests {