mirror of
				https://github.com/gohugoio/hugo.git
				synced 2024-05-11 05:54:58 +00:00 
			
		
		
		
	
		
			
				
	
	
	
		
			770 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			770 B
		
	
	
	
	
	
	
	
title, description, categories, menu, keywords, signature
| title | description | categories | menu | keywords | signature | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| urls.JoinPath | Joins the provided elements into a URL string and cleans the result of any ./ or ../ elements. If the argument list is empty, JoinPath returns an empty string. | 
 | 
 | 
 | 
 | 
{{ urls.JoinPath }} → ""
{{ urls.JoinPath "" }} → "/"
{{ urls.JoinPath "a" }} → "a"
{{ urls.JoinPath "a" "b" }} → "a/b"
{{ urls.JoinPath "/a" "b" }} → "/a/b"
{{ urls.JoinPath "https://example.org" "b" }} → "https://example.org/b"
{{ urls.JoinPath (slice "a" "b") }} → "a/b"
Unlike the path.Join function, urls.JoinPath retains consecutive leading slashes.