added some missing literals in the doc
authorfabien <fabien@93ef8e89-cb99-4229-a87c-7fa0fa45744b>
Sun, 13 Dec 2009 12:34:04 +0000 (12:34 +0000)
committerfabien <fabien@93ef8e89-cb99-4229-a87c-7fa0fa45744b>
Sun, 13 Dec 2009 12:34:04 +0000 (12:34 +0000)
git-svn-id: http://svn.twig-project.org/trunk@166 93ef8e89-cb99-4229-a87c-7fa0fa45744b

doc/02-Twig-for-Template-Designers.markdown

index 2fe90ff..585c07d 100644 (file)
@@ -61,7 +61,8 @@ same::
 >but the print statement. If you access variables inside tags don't put the
 >braces around.
 
-If a variable or attribute does not exist you will get back a `null` value.
+If a variable or attribute does not exist you will get back a `null` value
+(which can be testes with the `none` expression).
 
 >**SIDEBAR**
 >Implementation
@@ -664,6 +665,12 @@ exist:
    can be any valid expression, arrays can be nested. The array notation is
    only available as of Twig 0.9.5.
 
+ * `true` / `false` / `none`: `true` represents the true value, `false`
+   represents the false value.
+
+ * `none`: `none` represents no specific value (the equivalent of `null` in
+   PHP). This is the value returned when a variable does not exist.
+
 ### Math
 
 Twig allows you to calculate with values. This is rarely useful in templates