mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-29 18:22:03 -05:00
22 lines
615 B
Markdown
22 lines
615 B
Markdown
---
|
|
title: path.BaseName
|
|
description: BaseName returns the last element of a path, removing the extension if present.
|
|
categories: [functions]
|
|
menu:
|
|
docs:
|
|
parent: functions
|
|
keywords: [path, base]
|
|
signature: ["path.BaseName PATH"]
|
|
relatedfuncs: [path.Base, path.Clean, path.Dir, path.Ext, path.Join, path.Split]
|
|
---
|
|
|
|
If `PATH` is empty, `.` is returned.
|
|
|
|
**Note:** On Windows, `PATH` is converted to slash (`/`) separators.
|
|
|
|
```go-html-template
|
|
{{ path.BaseName "a/news.html" }} → "news"
|
|
{{ path.BaseName "news.html" }} → "news"
|
|
{{ path.BaseName "a/b/c" }} → "c"
|
|
{{ path.BaseName "/x/y/z/" }} → "z"
|
|
```
|