summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/urls.JoinPath.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/functions/urls.JoinPath.md')
-rw-r--r--docs/content/en/functions/urls.JoinPath.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/content/en/functions/urls.JoinPath.md b/docs/content/en/functions/urls.JoinPath.md
index c0e0464b6..f11632367 100644
--- a/docs/content/en/functions/urls.JoinPath.md
+++ b/docs/content/en/functions/urls.JoinPath.md
@@ -1,6 +1,6 @@
---
title: urls.JoinPath
-description: Joins the provided elements into a URL string and cleans the result of any ./ or ../ elements.
+description: Joins the provided elements into a URL string and cleans the result of any ./ or ../ elements. If the argument list is empty, JoinPath returns an empty string.
categories: [functions]
menu:
docs:
@@ -10,6 +10,7 @@ signature: ["urls.JoinPath ELEMENT..."]
---
```go-html-template
+{{ urls.JoinPath }} → ""
{{ urls.JoinPath "" }} → "/"
{{ urls.JoinPath "a" }} → "a"
{{ urls.JoinPath "a" "b" }} → "a/b"