path.Join
Replaces path separators with slashes (
/
), joins the given path elements into a single path, and returns the shortest path name equivalent to the result.Syntax
path.Join ELEMENT...
Returns
string
See Go’s
path.Join
and
path.Clean
documentation for details.
{{ path.Join "partial" "news.html" }} → partial/news.html
{{ path.Join "partial/" "news.html" }} → partial/news.html
{{ path.Join "foo/bar" "baz" }} → foo/bar/baz
{{ path.Join "foo" "bar" "baz" }} → foo/bar/baz
{{ path.Join "foo" "" "baz" }} → foo/baz
{{ path.Join "foo" "." "baz" }} → foo/baz
{{ path.Join "foo" ".." "baz" }} → baz
{{ path.Join "/.." "foo" ".." "baz" }} → baz