mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-15 08:50:45 -07:00
Clarify a not-null example. Fixes #247
+8
-16
@@ -120,6 +120,13 @@ optionally, `elsif` and `else`) clause:
|
||||
{% endif %}
|
||||
```
|
||||
|
||||
```
|
||||
# Same as above
|
||||
{% if user != null %}
|
||||
Hello {{ user.name }}
|
||||
{% endif %}
|
||||
```
|
||||
|
||||
```liquid
|
||||
{% if user.name == 'tobi' %}
|
||||
Hello tobi
|
||||
@@ -153,20 +160,6 @@ optionally, `elsif` and `else`) clause:
|
||||
{% endunless %}
|
||||
```
|
||||
|
||||
```liquid
|
||||
# Check if the user has a credit card
|
||||
{% if user.creditcard != null %}
|
||||
poor sob
|
||||
{% endif %}
|
||||
```
|
||||
|
||||
```liquid
|
||||
# Same as above
|
||||
{% if user.creditcard %}
|
||||
poor sob
|
||||
{% endif %}
|
||||
```
|
||||
|
||||
```liquid
|
||||
# Check for the size of an array
|
||||
{% if user.payments == empty %}
|
||||
@@ -176,7 +169,6 @@ optionally, `elsif` and `else`) clause:
|
||||
{% if user.payments.size > 0 %}
|
||||
you paid !
|
||||
{% endif %}
|
||||
|
||||
```
|
||||
|
||||
```liquid
|
||||
@@ -379,4 +371,4 @@ the given variable instead of rendering it to the screen.
|
||||
<option value="green">Green</option>
|
||||
<option value="blue">Blue</option>
|
||||
</select>
|
||||
```
|
||||
```
|
||||
Reference in New Issue
Block a user