Hi, How can I remove '	

 ' from src of image : <img src="
													/images/Article.png
												" />
I've boldfaced the problematic stuff - because you're mixing text and elements in the same container, the XML parser preserves all whitespace (said to be "significant").
You can fix it by wrapping rogue textchunks in <xsl:text> instructions:
How to remove '	

 '
Hi,
How can I remove '	

 ' from src of image :
<img src="
													/images/Article.png
												" />
Thanks,
kukuwka
Hi kukuwka,
By the look of it, I'd say you're doing something like this:
I've boldfaced the problematic stuff - because you're mixing text and elements in the same container, the XML parser preserves all whitespace (said to be "significant").
You can fix it by wrapping rogue textchunks in <xsl:text> instructions:
/Chriztian
Thank you very much.
is working on a reply...