projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
16330ce
)
Fix spf13/hugo#467. RSSLink now point to index.xml
author
Jian Zhou
<i@janzhou.org>
Wed, 8 Oct 2014 20:02:53 +0000
(16:02 -0400)
committer
spf13
<steve.francia@gmail.com>
Wed, 15 Oct 2014 16:36:06 +0000
(12:36 -0400)
helpers/url.go
patch
|
blob
|
history
diff --git
a/helpers/url.go
b/helpers/url.go
index afdf7490e5c300c9effa5845a5d5b9ad2d68ec7f..94c66139d3ed37df666cfd6f1c0341856d907f26 100644
(file)
--- a/
helpers/url.go
+++ b/
helpers/url.go
@@
-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