hugo/docs/content/en/functions/path/BaseName.md
2023-10-20 09:43:56 +02:00

726 B

title description categories keywords menu function relatedFunctions aliases
path.BaseName BaseName returns the last element of a path, removing the extension if present.
functions
docs
parent
functions
aliases returnType signatures
string
path.BaseName PATH
path.Base
path.BaseName
path.Clean
path.Dir
path.Ext
path.Join
path.Split
/functions/path.basename

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"