Fix spf13/hugo#467. RSSLink now point to index.xml
authorJian Zhou <i@janzhou.org>
Wed, 8 Oct 2014 20:02:53 +0000 (16:02 -0400)
committerspf13 <steve.francia@gmail.com>
Wed, 15 Oct 2014 16:36:06 +0000 (12:36 -0400)
helpers/url.go

index afdf7490e5c300c9effa5845a5d5b9ad2d68ec7f..94c66139d3ed37df666cfd6f1c0341856d907f26 100644 (file)
@@ -84,6 +84,9 @@ func UrlPrep(ugly bool, in string) string {
                return x
        } else {
                x := PrettifyUrl(SanitizeUrl(in))
+               if path.Ext(x) == ".xml" {
+                       return x
+               }
                url, err := purell.NormalizeURLString(x, purell.FlagAddTrailingSlash)
                if err != nil {
                        return in