Hi, to change delimiters, you need to do something like:
$dwoo = new \Dwoo\Core();
// Create the compiler instance
$compiler = new \Dwoo\Compiler();
// Set new delimiters, here [ & ]
$compiler->setDelimiters('[', ']');
// Output the result and provide the compiler to use
$dwoo->output($tpl, $data, $compiler);
Hi, to change delimiters, you need to do something like: