Reputation: 45
I have an array with value. But when I want to display I see the HTML elements. This is the output:
Array ( [content] =>
Jesteśmy profesjonalistami ...
When I use {$getContent['content']}
or {$getContent.content}
I see
<p>Jesteśmy profesjonalistami
How to display this value without HTML elements?
Upvotes: 1
Views: 1004
Reputation: 839
Try with unescape:"htmlall"
=> {$getContent.content|unescape:"htmlall"}
Upvotes: 1