Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'helpers/url.go')
-rw-r--r--helpers/url.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/url.go b/helpers/url.go
index 415f11b74..c3365d0b8 100644
--- a/helpers/url.go
+++ b/helpers/url.go
@@ -102,7 +102,7 @@ func SanitizeURLKeepTrailingSlash(in string) string {
// uri: Vim (text editor)
// urlize: vim-text-editor
func URLize(uri string) string {
- sanitized := MakePathToLower(uri)
+ sanitized := MakePathSanitized(uri)
// escape unicode letters
parsedUri, err := url.Parse(sanitized)