I'm using Visual Studio 2008. I have an xsl document that contains text which I want to leave unprocessed durring the xslt transformation. For this purpose I use CDATA tag. But the text is somehow processed within CDATA. all \[code\]<\[/code\] and \[code\]>\[/code\] are converted to \[code\]<\[/code\] and \[code\]>\[/code\] Here is an example what I mean:\[code\]<![CDATA[<p>What is going on?</p>]]>\[/code\]goes\[code\]<p>What is going on?</p>\[/code\]Can anyone help?