mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-25 15:58:53 +00:00
Update path.Split.md
This commit is contained in:
committed by
GitHub
parent
2749b88fd0
commit
e16e57e9a4
@@ -25,7 +25,7 @@ If there is no slash in `PATH`, it returns an empty directory and the base is se
|
||||
**Note:** On Windows, `PATH` is converted to slash (`/`) separators.
|
||||
|
||||
```
|
||||
{{ $dirFile := path.Split "a/news.html" }} → $dirDile.Dir = "a/", $dirFile.File = "news.html"
|
||||
{{ path.Split "news.html" }} → $dirDile.Dir = "", $dirDile.File = "news.html"
|
||||
{{ path.Split "a/b/c" }} → $dirDile.Dir = "a/b/", $dirDile.File = "c"
|
||||
{{ $dirFile := path.Split "a/news.html" }} → $dirDile.Dir → "a/", $dirFile.File → "news.html"
|
||||
{{ $dirFile := path.Split "news.html" }} → $dirDile.Dir → "", $dirDile.File → "news.html"
|
||||
{{ $dirFile := path.Split "a/b/c" }} → $dirDile.Dir → "a/b/", $dirDile.File → "c"
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user