Example will be more explicit 👍
<!-- test.html.php -->
<?= $this->section('exampleSection')?>
<!-- test2.html.php -->
<?php $this->layout('test.html') ?>
<?= $this->start('exampleSection')?>
From test2.html
<?= $this->stop()?>
<!-- test3.html.php -->
<?php $this->layout('test2.html') ?>
<?= $this->start('exampleSection')?>
From test3.html
<?= $this->stop()?>
I may expect this result if I render test3.html.php :
I get :
When Plates was designed, what was the expected result for some kind for code ?
( I can do a PR, but I think it must be discussed about the expected behaviour, I am switching from twig to plates so I try to find some similar logical).