Documentation Index
Fetch the complete documentation index at: https://errand.nuvrel.dev/llms.txt
Use this file to discover all available pages before exploring further.
urlencode(str) percent-encodes str so it is safe to use as a URL query parameter or path segment. Special characters like spaces, &, =, and / are encoded.
Signature
Example
Build a search query URL for a monitoring dashboard link in a release notification:Notes
urlencodeencodes the entire string, including characters that are valid in some URL parts (like/). It is intended for query parameter values and similar contexts where the entire value must be escaped.- Spaces are encoded as
+, following theapplication/x-www-form-urlencodedformat used byurl.QueryEscape. If your target requires%20for spaces, replace+with%20after encoding.