In Zend Framework, it is possible to set indentation for headMeta(), headLink(), etc:
<?= $this->headLink()->setIndent("\t\t") ?>
I like this. I like things tidy. So, now I would want to indent my entire view as well in the layout.phtml file, causing every new line in the view script to be indented with X tabs.
<?= $this->layout()->setIndent("\t\t")->content ?>
This does not work. Is there any way to do this within Zend Framework without having to intercept the output with ob_start?