Hi, when I use verbatim tag in twig, twig components seems to partialy ignore it. It is printed as text but first parsed to twig notation. Is there a way how to prevent this behavior?
Thanks
Example
{% verbatim %}
<x-components.component>test</x-components.component>
{% endverbatim %}
Retult
{% x:components.component with {} %}test{% endx %}
Expected behavior
Original source get's printed.
<x-components.component>test</x-components.component>
Hi, when I use verbatim tag in twig, twig components seems to partialy ignore it. It is printed as text but first parsed to twig notation. Is there a way how to prevent this behavior?
Thanks
Example
{% verbatim %} <x-components.component>test</x-components.component> {% endverbatim %}Retult
Expected behavior
Original source get's printed.