Closed magodo closed 3 months ago
The body pattern (i.e. body or body.x) now can add a chain of functions (applied from left to right), in form of $f1.f2(body.x).
body
body.x
$f1.f2(body.x)
Supported functions include:
escape
unescape
base
url_path
trim_path
path
Removes the previous #(...) pattern, instead use url_path.
#(...)
Fix #105
Very nice! This provider is really flexible I love it.
Thank you for putting the time in to make it.
The body pattern (i.e.
body
orbody.x
) now can add a chain of functions (applied from left to right), in form of$f1.f2(body.x)
.Supported functions include:
escape
: URL path escape (by default applied)unescape
: URL path unescapebase
: filepath baseurl_path
: path segment of a URLtrim_path
: trimpath
Removes the previous
#(...)
pattern, instead useurl_path
.Fix #105