Update website/docs/language/functions (#227)

Signed-off-by: Marcin Białoń <mbialon@spacelift.io>
This commit is contained in:
Marcin Białoń
2023-08-30 14:59:37 +02:00
committed by GitHub
parent 19c658c516
commit 554f303899
101 changed files with 312 additions and 388 deletions

View File

@@ -26,6 +26,6 @@ UTF-8 and then percent encoding is applied separately to each UTF-8 byte.
Hello+World%21
> urlencode("☃")
%E2%98%83
> "http://example.com/search?q=${urlencode("terraform urlencode")}"
http://example.com/search?q=terraform+urlencode
> "http://example.com/search?q=${urlencode("opentf urlencode")}"
http://example.com/search?q=opentf+urlencode
```