diff --git a/examples/nesting.html b/examples/nesting.html
new file mode 100644
index 0000000..551366d
--- /dev/null
+++ b/examples/nesting.html
@@ -0,0 +1,5 @@
+{{#foo}}
+ {{#a}}
+ {{b}}
+ {{/a}}
+{{/foo}}
diff --git a/examples/nesting.js b/examples/nesting.js
new file mode 100644
index 0000000..1f76cd0
--- /dev/null
+++ b/examples/nesting.js
@@ -0,0 +1,7 @@
+var nesting = {
+ foo: [
+ {a: {b: 1}},
+ {a: {b: 2}},
+ {a: {b: 3}}
+ ]
+};
diff --git a/examples/nesting.txt b/examples/nesting.txt
new file mode 100644
index 0000000..caf5afd
--- /dev/null
+++ b/examples/nesting.txt
@@ -0,0 +1,4 @@
+ 1
+ 2
+ 3
+