modified: Operators.md

harttle
2019-10-20 23:22:03 +08:00
parent b7a96e906a
commit 215b8f358b
+1 -1
@@ -5,7 +5,7 @@ Liquid operators are very simple and different. According to the [operators docu
* Comparison operators: `==`, `!=`, `>`, `<`, `>=`, `<=`
* Logic operators: `or`, `and`, `contains`
Thus numerical operators are not supported and you cannot even plus two numbers `{{a + b}}`. Actually `+` is a valid variable name.
Thus numerical operators are not supported and you cannot even plus two numbers like this `{{a + b}}`, instead we need a filter `{{ a | plus: b}}`. Actually `+` is a valid variable name.
## Precedence