mirror of
				https://github.com/gohugoio/hugo.git
				synced 2024-05-11 05:54:58 +00:00 
			
		
		
		
	
		
			
				
	
	
	
		
			652 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			652 B
		
	
	
	
	
	
	
	
title, description, date, categories, menu, keywords, signature, relatedfuncs, deprecated
| title | description | date | categories | menu | keywords | signature | relatedfuncs | deprecated | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| path.BaseName | BaseName returns the last element of a path, removing the extension if present. | 2022-06-04 | 
 | 
 | 
 | 
 | 
 | false | 
If PATH is empty, . is returned.
Note: On Windows, PATH is converted to slash (/) separators.
{{ path.BaseName "a/news.html" }} → "news"
{{ path.BaseName "news.html" }} → "news"
{{ path.BaseName "a/b/c" }} → "c"
{{ path.BaseName "/x/y/z/" }} → "z"