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:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-11-05 19:05:33 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-11-05 19:28:14 +0300
commitd4830fc4fd765d38fd0d7e3d8297eebbe6fca011 (patch)
tree6275b92abc52ca211afc519224a246cc6e651e24 /helpers/url.go
parent72156e403c3e83b0091c764111ce6a75bd40c08e (diff)
helpers: Golint fixes
Diffstat (limited to 'helpers/url.go')
-rw-r--r--helpers/url.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/helpers/url.go b/helpers/url.go
index 3c178f0ff..922d4aa80 100644
--- a/helpers/url.go
+++ b/helpers/url.go
@@ -288,10 +288,13 @@ func AddContextRoot(baseURL, relativePath string) string {
return newPath
}
+// URLizeAndPrep applies misc sanitation to the given URL to get it in line
+// with the Hugo standard.
func (p *PathSpec) URLizeAndPrep(in string) string {
return URLPrep(p.uglyURLs, p.URLize(in))
}
+// URLPrep applies misc sanitation to the given URL.
func URLPrep(ugly bool, in string) string {
if ugly {
x := Uglify(SanitizeURL(in))