I finally gave up the transformation of xslt after the failure of several tryings (if you are interested, you can check my question here: don't want xslt intepret the entity characters). And now I'm working on the javax Transformer trying to solve the problem.
The problem is that I would like to keep the escaping of apostrophe ' in the xml and html:
< cell i='0' j='0' vi='0' parity='Odd' subType='-1'> "String'</cell>
output is what I don't want:
< td nowrap="true" class="gridCell" i="0" j="0">"String'< /td>
I would like the result as follows:
< td nowrap="true" class="gridCell" i="0" j="0">"String'< /td>
I don't know whether we could use the method transform to do this, and I see a similar question, but he needs the opposite thing : How Do You Prevent A javax Transformer From Escaping Whitespace?
I appreciate any help from you, thank you!