mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
parent
26f1919ae0
commit
f8d132d731
1 changed files with 26 additions and 0 deletions
26
docs/content/en/functions/path.Clean.md
Normal file
26
docs/content/en/functions/path.Clean.md
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
---
|
||||||
|
title: path.Clean
|
||||||
|
description: Replaces path separators with slashes (`/`) and removes extraneous separators.
|
||||||
|
date: 2021-10-08
|
||||||
|
# publishdate: 2018-11-28
|
||||||
|
# lastmod: 2018-11-28
|
||||||
|
categories: [functions]
|
||||||
|
menu:
|
||||||
|
docs:
|
||||||
|
parent: "functions"
|
||||||
|
keywords: [path]
|
||||||
|
signature: ["path.Clean PATH"]
|
||||||
|
---
|
||||||
|
|
||||||
|
`path.Clean` replaces path separators with slashes (`/`) and removes extraneous separators, including trailing separators.
|
||||||
|
|
||||||
|
```
|
||||||
|
{{ path.Clean "foo//bar" }} → "foo/bar"
|
||||||
|
{{ path.Clean "/foo/bar/" }} → "/foo/bar"
|
||||||
|
```
|
||||||
|
|
||||||
|
On a Windows system, if `.File.Path` is `foo\bar.md`, then:
|
||||||
|
|
||||||
|
```
|
||||||
|
{{ path.Clean .File.Path }} → "foo/bar.md"
|
||||||
|
```
|
Loading…
Reference in a new issue