I'm using TWIG in a project of mine but I can not display a string that has Bold or Italic, it simply ignores. Other HTML commands are normally displayed.
Example:
{{ 'Ao <strong><em><u>contrário do que se acredita</u></em></strong>,<span style="color:#FF0000"> Lorem Ipsum não é simplesmente um texto randômico</span>. ' }}
Return: The whole text is output with the underline and the font in the red color but the Bold and the Italic whit.
I've tried it that way too and nothing:
{% autoescape false %}{{ 'Ao <strong><em><u>contrário do que se acredita</u></em></strong>,<span style="color:#FF0000"> Lorem Ipsum não é simplesmente um texto randômico</span>. ' }}{% endautoescape %}