I am developing a news system for a french association's website with Symfony2. I'm having troubles when it comes to displaying the accents and also HTML.
In the twig view I simply output the variable:
{{ article.body }}
If I insert the accent directly in the database like this: 'é', the variable is not even displayed.
If I insert this instead: é
it stays the same.
HTML is shown as text.
I also tried the autoescape
function (set to true
and false
), no success :
{% autoescape true %}
{{ article.body }}
{% endautoescape %}
Any suggestions? Thanks a lot