Skip to content

Commit bcb4b2b

Browse files
sirainencmouse
authored andcommitted
variables: Add space after filter parameter commas
This allow line wrapping.
1 parent 1f698ff commit bcb4b2b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/core/settings/variables.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -100,17 +100,17 @@ Bytes output type indicates that the output will be tagged as binary output. Sub
100100
| base64(pad=boolean, url=boolean) | Bytes | String | Base64 encode given input, defaults to pad and not url scheme. |
101101
| benumber | Bytes | Number | Convert big-endian encoded input into a number. |
102102
| concat(any, any...) | Bytes | Bytes | Concatenates input with value(s). Numbers are coerced to strings. Input is optional. |
103-
| decrypt(key=bytes,iv=bytes,raw=boolean,algorithm=string) | Any | Any | Decrypts given input, see [cryptography support](#cryptography-support). |
104-
| decrypt(key=string,salt=string,rounds=number,raw=boolean,hash=string,algorithm=string) | Any | Any | Decrypts given input, see [cryptography support](#cryptography-support). |
103+
| decrypt(key=bytes, iv=bytes, raw=boolean, algorithm=string) | Any | Any | Decrypts given input, see [cryptography support](#cryptography-support). |
104+
| decrypt(key=string, salt=string, rounds=number, raw=boolean, hash=string, algorithm=string) | Any | Any | Decrypts given input, see [cryptography support](#cryptography-support). |
105105
| default(value) | String | String | Replace empty or missing input with value. Clears missing variable error. If no value is provided, empty string is used. |
106106
| domain | String | String | Provides domain part of user@domain value. |
107-
| encrypt(key=bytes,iv=bytes,raw=boolean,algorithm=string) | Any | Any | Encrypts given input, see [cryptography support](#cryptography-support). |
108-
| encrypt(key=string,salt=string,rounds=number,raw=boolean,hash=string,algorithm=string) | Any | Any | Encrypts given input, see [cryptography support](#cryptography-support). |
107+
| encrypt(key=bytes, iv=bytes, raw=boolean, algorithm=string) | Any | Any | Encrypts given input, see [cryptography support](#cryptography-support). |
108+
| encrypt(key=string, salt=string, rounds=number, raw=boolean, hash=string, algorithm=string) | Any | Any | Encrypts given input, see [cryptography support](#cryptography-support). |
109109
| hash(method, rounds=number, salt=string) | Bytes | Bytes | Returns raw hash from input using given hash method. Rounds and salt are optional. |
110110
| hexlify(width) | Bytes | String | Convert bytes into hex with optional width, truncates or pads up to width. |
111111
| hex(width) | Number | Number | Convert base-10 number to base-16 number. If width is specified the result is truncated or padded with 0 to width. Negative width is applied after number. |
112-
| if(left,operator,right,true,false) | String | String | Evaluates given comparison and returns true or false value. See [conditionals](#conditionals). |
113-
| if(operator,right,true,false) | String | String | Evaluates given comparison against input value and retuns true or false value. |
112+
| if(left, operator, right, true, false) | String | String | Evaluates given comparison and returns true or false value. See [conditionals](#conditionals). |
113+
| if(operator, right, true, false) | String | String | Evaluates given comparison against input value and retuns true or false value. |
114114
| index(separator, nth) | String | String | Returns nth element from separator separated string. Zero based. Negative values are looked relative to end of list. |
115115
| ldap_dn | String | String | Converts `domain.com` to `dc=domain,dc=com`. |
116116
| lenumber | Bytes | Number| Convert little-endian encoded input into a number. |

0 commit comments

Comments
 (0)