Output von XSLT, teilweise kein Zeilenumbruch

karstenkurt

Mitglied
Hallo,

ich habe da ein recht rätselhaftes Verhalten bei meinen XSLTs. Ich habe die so formatiert, das dort eigentlich gut lesbarer Output rauskommen müsste.

Teilweise klappt das auch, nur an einigen Stellen wird mir der in der XSLT definierte Zeilenumbruch nicht angeziegt

Code:
		<table border="1" cellpadding="0" cellspacing="0" width="600" bgcolor="#FFFFFF" SUMMARY="">
			<colgroup>
			<col width="26" />
			<col width="26" />
			<col width="120" />
			<col />
			</colgroup>
			<!-- ueberschrift -->
			<tr bgcolor="#C8C8C8">
				<td width="26" height="19" nowrap="nowrap"></td> 
				<td width="26" height="19" nowrap="nowrap"></td>
				<td colspan="2"><b>Text</b></td>
			</tr>
			<xsl:call-template name="row"/>

Output ist
Code:
<table SUMMARY="" bgcolor="#FFFFFF" width="600" cellspacing="0" cellpadding="0" border="1">
  <colgroup>
    <col width="26">
    <col width="26">
    <col width="120">
    <col>
  </colgroup>
  <tr bgcolor="#C8C8C8">
    <td nowrap="nowrap" height="19" width="26"></td><td nowrap="nowrap" height="19" width="26"></td><td colspan="2"><b>Text</b></td>
  </tr>.....

Wie kann ich das beseitigen?
 
Zurück