forked from friendica/friendica-addons
[advancedcontentfilter] Fix formatting in src/middlewares and doc/advancedcontentfilter
This commit is contained in:
parent
b02724f867
commit
acce253d8e
|
@ -45,14 +45,11 @@ A post will be collapsed if at least one rule matches, but all matching rule nam
|
||||||
- **booleans** - `true` and `false`.
|
- **booleans** - `true` and `false`.
|
||||||
- **null** - `null`.
|
- **null** - `null`.
|
||||||
|
|
||||||
A backslash (``\``) must be escaped by 4 backslashes (``\\\\``) in a string
|
A backslash (``\``) must be escaped by 4 backslashes (``\\\\``) in a string and 8 backslashes (``\\\\\\\\``) in a regex::
|
||||||
and 8 backslashes (``\\\\\\\\``) in a regex::
|
|
||||||
|
|
||||||
`"a\\\\b" matches "/^a\\\\\\\\b$/"`
|
`"a\\\\b" matches "/^a\\\\\\\\b$/"`
|
||||||
|
|
||||||
Control characters (e.g. ``\n``) in expressions are replaced with
|
Control characters (e.g. ``\n``) in expressions are replaced with whitespace. To avoid this, escape the sequence with a single backslash (e.g. ``\\n``).
|
||||||
whitespace. To avoid this, escape the sequence with a single backslash
|
|
||||||
(e.g. ``\\n``).
|
|
||||||
|
|
||||||
### Supported Operators
|
### Supported Operators
|
||||||
|
|
||||||
|
@ -85,13 +82,11 @@ The component comes with a lot of operators:
|
||||||
* ``>=`` (greater than or equal to)
|
* ``>=`` (greater than or equal to)
|
||||||
* ``matches`` (regex match)
|
* ``matches`` (regex match)
|
||||||
|
|
||||||
To test if a string does *not* match a regex, use the logical ``not``
|
To test if a string does *not* match a regex, use the logical ``not`` operator in combination with the ``matches`` operator:
|
||||||
operator in combination with the ``matches`` operator:
|
|
||||||
|
|
||||||
'not ("foo" matches "/bar/")'
|
`not ("foo" matches "/bar/")`
|
||||||
|
|
||||||
You must use parenthesis because the unary operator ``not`` has precedence
|
You must use parenthesis because the unary operator ``not`` has precedence over the binary operator ``matches``.
|
||||||
over the binary operator ``matches``.
|
|
||||||
|
|
||||||
#### Logical Operators
|
#### Logical Operators
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue