在当前的Twig模板中使用自定义分隔符
我使用Twig生成LaTeX文档。 Twig的默认分隔符语法与LaTeX的花括号严重冲突。 简单地转义LaTeX是没有选择的,因为它使代码完全不可读。 我知道我可以在全球定义自定义分隔符,但我不想重写所有的HTML模板以使用新的语法。
我也知道逐字部分,但这些代码真的很难看:
ihead{
{% endverbatim %}
{{ title }}
{% verbatim %}
}
有没有一种方法可以改变当前模板或一组模板的语法,如下所示:
{% set_delimiters({
'tag_comment' : ['<%#', '%>'],
'tag_block' : ['<%' , '%>'],
'tag_variable' : ['<%=', '%>'],
'interpolation': ['#<' , '>']
}) %}
如您所见,不建议使用此功能定制语法
顺便说一句,这里有一个快速简单的例子来解释如何在symfony中使用自定义分隔符:
service.yml
services:
templating_lexer:
public: true
parent: templating.engine.twig
class: AcmeYourBundleTwigTwigLexerEngine
TwigLexerEngine
namespace AcmeYourBundleTwig;
use SymfonyBundleTwigBundleTwigEngine;
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');
}
链接地址: http://www.djcxy.com/p/77489.html
上一篇: Use custom delimiters in the current Twig template
下一篇: Why isn't my for loop printing like I would expect from my pseudocode?