Hi everyone and sorry for my english,
I have a service who generates some html code which is passed to a twig template. I had to use the raw filter to show the code, but in that code I call a twig function.
This is the code stored in a var which is passed to the template by the controller.
'<li class="active" ><a href="{{ path(\'help\') }}">Help</a></li>'
The resulting html code is the same, so {{ path('help') }}
is not called.
Is there any filter to show the html code and call the functions?
Thanks