xsl-list
[Top] [All Lists]

RE: Unwanted added spaces in output code

2004-09-29 03:26:34
Hi,

I didn't include the code because it is a hard coded part of the style
sheet. 

<!--Aaron test footer area-->
    
    <tr>
        <td colspan="2" align="left" valign="top">
            
            <table width="100%" cellspacing="0" cellpadding="0">
          <tr>     
            <td colspan="3">
            
            <table width="100%" cellpadding="0" cellspacing="0">
                <tr>
                    <td bgcolor="#bdced6"><img
src="/includes/assets/2004Design/spacer.gif" width="1" 
height="1" alt=""
/></td>

If this is your stylesheet, you have no xml:space definitions in your 
stylesheet, and it comes out as

<tr>
      <td bgcolor="#bdced6"><img alt="" height="1"
width="1"src="/includes/assets/2004Design/spacer.gif" /> </td>
</tr>

Then your serializer is doing something funny. Or rather, the spec 
<http://www.w3.org/TR/xslt#section-HTML-Output-Method> says:

  "If the indent attribute has the value yes, then the html output method may 
add or remove whitespace as it outputs the result tree, so long as it does not 
change how an HTML user agent would render the output. The default value is 
yes."

Maybe your XSLT engine gets it wrong and adds whitespace into places it 
shouldn't.

What's your xsl:output/@indent setting? Try with "no".

Cheers,

Jarno - <Unknown>: Dust Angel


<Prev in Thread] Current Thread [Next in Thread>