The PHP Code: ------------- ```php require('../vendor/autoload.php'); use LightnCandy\LightnCandy; // The Template: $template = <<<VAREND {{{debug (debug 'foobar(moo).')}}} VAREND; $phpStr = LightnCandy::compile($template, array( 'flags' => LightnCandy::FLAG_HANDLEBARS | LightnCandy::FLAG_ERROR_EXCEPTION )); echo "Generated PHP Code:\n$phpStr\n"; ``` The Issue: ---------- The issue is very similar to #281 and #295. The error message is `Error in 'echo (echo "foobar(moo).")': expect ')' but the token ended!!`.