Preserve certain html tags during XSLT
Posted
by Bilzac
on Stack Overflow
See other posts from Stack Overflow
or by Bilzac
Published on 2010-05-26T13:49:31Z
Indexed on
2010/05/26
13:51 UTC
Read the original article
Hit count: 221
I have looked up solutions on stackflow, but none of them seem to work for me. Here is my question. Lets say I have the following text :
Source:
<description>
$300$ <br/> $250 <br/> $200! <br/> <p> Yes, that is right! <br/> You can own a ps3 for only $200 </p>
</description>
Output:
<newprice>
$300$ <br/> $250 <br/> $200! <br/> Yes, that is right! <br/> You can own a ps3 for only $200
</newprice>
I can't seem to find a way to do that.
© Stack Overflow or respective owner