hugo/docs/content/en/functions/path.Join.md
2018-12-12 09:06:42 +01:00

735 B

title description godocref date publishdate lastmod categories menu keywords signature workson hugoversion relatedfuncs deprecated
path.Join Join path elements into a single path. 2018-11-28 2018-11-28 2018-11-28
functions
docs
parent
functions
path
join
path.Join ELEMENT...
0.39
path.Split
false

path.Join joins path elements into a single path, adding a separating slash if necessary. All empty strings are ignored.

Note: All path elements on Windows are converted to slash ('/') separators.

{{ path.Join "partial" "news.html" }} → "partial/news.html"
{{ path.Join "partial/" "news.html" }} → "partial/news.html"
{{ path.Join "foo/baz" "bar" }} → "foo/baz/bar"