在当前的Twig模板中使用自定义分隔符

时间:2014-02-15 07:04:24

标签: php symfony twig

我使用Twig生成LaTeX文档。 Twig的默认分隔符语法与LaTeX的花括号发生严重冲突。简单地转义LaTeX是没有选择的,因为它使代码完全不可读。我知道我可以define custom delimiters globally,但我不想重写所有HTML模板以使用新语法。

我也知道verbatim sections,但那些让代码变得非常难看:

\ihead{
{% endverbatim %}
{{ title }}
{% verbatim %}
} 

有没有办法可以为当前模板或一组模板更改语法,如:

{% set_delimiters({
    'tag_comment'  : ['<%#', '%>'],
    'tag_block'    : ['<%' , '%>'],
    'tag_variable' : ['<%=', '%>'],
    'interpolation': ['#<' , '>']
}) %}

1 个答案:

答案 0 :(得分:4)

如您所见,建议不要使用此功能Customizing the Syntax

BTW这是一个快速简单的例子来解释如何在symfony中使用自定义分隔符:

<强> service.yml

services:
    templating_lexer:
        public: true
        parent: templating.engine.twig
        class:  Acme\YourBundle\Twig\TwigLexerEngine

<强> TwigLexerEngine

namespace Acme\YourBundle\Twig;

use Symfony\Bundle\TwigBundle\TwigEngine;

class TwigLexerEngine extends TwigEngine
{
    public function setTwigLexer($lexer)
    {
         $this->environment->setLexer($lexer);

         return $this;
    }
}

您的控制器

public function yourAction()
{
    $lexer = new \Twig_Lexer($this->get('twig'), array(
        'tag_comment'  => array('{*', '*}'),
        'tag_block'    => array('{', '}'),
        'tag_variable' => array('{$', '}'),
    ));

    $templating = $this->get('templating_lexer');
    $templating->setTwigLexer($lexer);

    return $templating->renderResponse('YourBundle::template.html.twig');
}