Back to Hugo

urls.JoinPath

docs/content/en/functions/urls/JoinPath.md

0.161.1442 B
Original Source
go-html-template
{{ urls.JoinPath }} → "" (empty string)
{{ urls.JoinPath "" }} → /
{{ urls.JoinPath "a" }} → a
{{ urls.JoinPath "a" "b" }} → a/b
{{ urls.JoinPath "/a" "b" }} → /a/b
{{ urls.JoinPath "https://example.org" "b" }} → https://example.org/b

{{ urls.JoinPath (slice "a" "b") }} → a/b

Unlike the path.Join function, urls.JoinPath retains consecutive leading slashes.