I want to translate a whole html page (text and some markup) including <p>,<italic>, <strong> tags in Symfony2. For simple phrases I use {{ 'read.first'|trans }} but this does not accept html tags like <p>. How do I do that ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
You shouldn't translate complete pages with the Translation component of symfony, that is meaned for just short strings. Twig always escapes tags in strings, you can read in the translation docs how to disable this for your translations:
|
|||||
|