diff --git a/examples/keys_with_questionmarks.html b/examples/keys_with_questionmarks.html
new file mode 100644
index 0000000..417f17f
--- /dev/null
+++ b/examples/keys_with_questionmarks.html
@@ -0,0 +1,3 @@
+{{#person?}}
+ Hi {{name}}!
+{{/person?}}
diff --git a/examples/keys_with_questionmarks.js b/examples/keys_with_questionmarks.js
new file mode 100644
index 0000000..55a220d
--- /dev/null
+++ b/examples/keys_with_questionmarks.js
@@ -0,0 +1,5 @@
+var keys_with_questionmarks = {
+ "person?": {
+ name: "Jon"
+ }
+}
diff --git a/examples/keys_with_questionmarks.txt b/examples/keys_with_questionmarks.txt
new file mode 100644
index 0000000..0f69b94
--- /dev/null
+++ b/examples/keys_with_questionmarks.txt
@@ -0,0 +1 @@
+ Hi Jon!