Multiple levels of nested partials are only indented to the level of the first partial.
@@ -0,0 +1,6 @@
+<?php
+
+class NestedPartials
+{
+ public $val = 'FOURTH!';
+}
@@ -0,0 +1,3 @@
+<first>
+ {{> second }}
+</first>
@@ -0,0 +1,7 @@
+ <second>
+ <third>
+ FOURTH!
+ </third>
+ </second>
@@ -0,0 +1 @@
+{{ val }}
+<second>
+ {{> third }}
+</second>
+<third>
+ {{> fourth }}
+</third>