Hi.
I have this code in a template:
TWIG
<p class="excerpt">
{{ page.content|raw }}
</p>
In the html output I get the following result:
HTML
<p class="excerpt">
<p>Content paragraph here...</p>
</p>
I'd like to get only one paragraph with its css classes (in this example "excerpt")
how can I get it?
Thanks.