As recommended by Symfony I'm using xlf files for the translations.
I want to store a message which has a HTML tags, let's say:
Welcome back <a href='/user/profile'>user</a>.
I have discovered that you can't include this literal in the target section because you get an exception caused by the "<" and ">" chars.
I'm unable to find a way to escape this chars unless using the <
and >
.
Is there another solution?. Any suggestions?