How can I display a string that contains HTML tags in twig template?
My PHP variable contains this html and text:
$word = \' a word
You can also use:
{{ word|striptags('')|raw }}
so that only tag will be allowed.