I had no look into the code, but what about applying the particular template only to node()[normalize-space()]? Or copying only $body[normalize-space()] if $body is a node set?
This will also produce invalid results (you will be missing spaces you so carefully put in the source); but from code POV, there is already translate() replacing 0x09, 0x0A, 0x0D with the space. Why it does not work here is the issue.
Vadim
Joerg
On 06.12.2003 09:23, [EMAIL PROTECTED] wrote:
the produced java code look like ("
"
+ " " + body.toString() + " "
)
normalize space maybe is not the solution
but just make it work because then the produced code look like
(" " + "" body.toString + "")
--stavros
...............
