Código HTML:
<p> {% autoescape false %} {{ noticia.contenidoNoticia|striptags|slice(0,250) ~ '...' }} {% endautoescape %} </p>
He conseguido resolver el problema haciendo lo siguiente en el controlador, pero me gustaría saber si hay alguna solución desde twig
Código PHP:
foreach($noticias as $noticia)
{
$noticia->setContenidoNoticia(html_entity_decode($noticia->getContenidoNoticia()));
}