我用:
显示原始标题{{ title | raw }}
这几乎总能奏效。但是空格符号 
显示在某些模板中,而所有其他HTML实体都未转义。
当我像这样调用渲染模板时,它似乎发生了:
$this->templating->render('template');
当我像这样渲染时:
$this->render('template');
它没有逃脱。
为什么会这样,我该如何解决?
修改
这是包含理论title
变量(community.niceName
)的实线:
<p>{{ inviter.fullName }}, your {{ memberType }} from {{ community.niceName | raw }}, {{ community.municipality }}, has invited you.</p>