DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14229>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14229 XSLTC indents as if indent always set to yes ------- Additional Comments From [EMAIL PROTECTED] 2002-11-04 19:31 ------- Where are you setting indent="no"? In xsl:output or from your JAXP program using properties? Bear in mind that HTML output implies indent="yes". If you don't want to indent, you should add: <xsl:output ... indent="no" ... /> My guess is that Xalan classic is also indenting your output by adding "\n" chars (or else the output should be all in one line). The difference is that XSLTC (as well as other XSLT processors) adds spaces as well (the XSLT spec does not defined how processors are supposed to add whitespaces when indent="yes"). If this is the case, setting indent="no" should fix your problem.
