1
0
Fork 0
hugo/docs/content/en/functions/path/Base.md

21 lines
493 B
Markdown

---
title: path.Base
description: Replaces path separators with slashes (`/`) and returns the last element of the given path.
categories: []
keywords: []
params:
functions_and_methods:
aliases: []
returnType: string
signatures: [path.Base PATH]
aliases: [/functions/path.base]
---
```go-html-template
{{ path.Base "a/news.html" }} → news.html
{{ path.Base "news.html" }} → news.html
{{ path.Base "a/b/c" }} → c
{{ path.Base "/x/y/z/" }} → z
{{ path.Base "" }} → .
```