rcrowe / TwigBridge

Give the power of Twig to Laravel
MIT License
894 stars 167 forks source link

How to customizing the Syntax? #326

Open lyongdee opened 7 years ago

lyongdee commented 7 years ago

`$twig = new Twig_Environment(...);

$lexer = new Twig_Lexer($twig, array( 'tag_comment' => array('{#', '#}'), 'tag_block' => array('{%', '%}'), 'tag_variable' => array('{{', '}}'), 'interpolation' => array('#{', '}'), )); $twig->setLexer($lexer);`

???

svenluijten commented 6 years ago

what is it you're asking exactly? What do you want to accomplish?