Actually it appears to be ignoring the whole <xsl:output/> instruction...
-----Original Message----- From: Sayeau, Derek [mailto:[EMAIL PROTECTED] Sent: February 27, 2002 11:07 AM To: '[EMAIL PROTECTED]' Subject: Stylesheet whitespace processing with XSLTC Hi, has anyone run into this problem with XSLTC (2.3.1), and know a work around (or perhaps I'm doing something wrong?)... this works fine with XalanJ. XSLTC indents (when indent="false") literal result nodes in the stylesheet, which can cause all sorts of problems with tables in html. Example stylesheet: <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output method="html" version="1.0" encoding="UTF-8" indent="no"/> <xsl:template match="/"> <html> <body> <table><tr><td>123</td></tr></table> </body> </html> </xsl:template> </xsl:stylesheet> Given output: <html> <body> <table> <tr> <td>123</td> </tr> </table> </body> </html> Expected output: <html><body><table><tr><td>123</td></tr></table></body></html> ............................................................................ This message may contain privileged and/or confidential information. If you have received this e-mail in error or are not the intended recipient, you may not use, copy, disseminate or distribute it; do not open any attachments, delete it immediately from your system and notify the sender promptly by e-mail that you have done so. Thank you.
