I am using twig to render a view and I am using the striptags filter to remove html tags. However, html special chars are now rendered as text as the whole element is surrou
Arf, I finally found it :
I am using a custom twig filter that just applies a php function:
{{ organization.shortDescription ?: php('html_entity_decode',organization.content|striptags|truncate(200, '...')) }}
Now it renders correctly
My php extension: