Update readme
diff --git a/README.md b/README.md
index bcf2705..5c3cc85 100644
--- a/README.md
+++ b/README.md
@@ -49,12 +49,19 @@
 ## Supported 
 ```
  Variables             {{var-name}}
+ 
  Sections              {{#section}}Blah{{/section}}
+ 
  Inverse sections      {{^section}}Blah{{/section}}
+ 
  Comments              {{! Not output. }}
+ 
  Unescaped variables   {{{var-name}}} and {{&var-name}}
- Partials
- Lambdas
+ 
+ Partials              {{>include-other-file}}
+
+ Lambdas               new Template('{{# foo }}oi{{/ foo }}')
+                          .renderString({'foo': (s) => '<b>${s.toUpperCase()}</b>'});
 ```
 See the [mustache templates tutorial](http://mustache.github.com/mustache.5.html) for more information.