mountainbiker
Programmer
Basically, my XSLT reads
however, the HTML output reads
Now, if <xsl
utput> is set to indent=no, then the problem is cured. Unfortunately, I require this "pretty-printing" for human-readability of the beginning meta elements.
This "space creeping" I know is a problem of HTML; however, is there a clean/simply way to preserve the formatting actually like the first example above?
Code:
<td><img...></td>
however, the HTML output reads
Code:
<td>
<img...>
</td>
Now, if <xsl
This "space creeping" I know is a problem of HTML; however, is there a clean/simply way to preserve the formatting actually like the first example above?