tpl/path: Add path.BaseName function

Closes #9973
This commit is contained in:
Joe Mooring 2022-06-04 13:40:32 -07:00 committed by Bjørn Erik Pedersen
parent 8e2fd55923
commit 953f215f32
9 changed files with 77 additions and 6 deletions

View file

@ -0,0 +1,24 @@
---
title: path.BaseName
description: BaseName returns the last element of a path, removing the extension if present.
date: 2022-06-04
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]
deprecated: false
---
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"
```