xslt の助けを借りて、xml データを html ページに変換しています。このように表示される重複データを次の方法で排除したい。
xml データ
<calendar>
<event>
<date>May 11</date>
<description>Mother's Day</description>
</event>
<event>
<date>May 12</date>
<description>Birthday</description>
</event>
<event>
<date>May 12</date>
<description>Board Meeting</description>
</event>
</calendar>
私のxsltコード
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h2>Event Dates </h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>date</th>
<th>description</th>
</tr>
<xsl:for-each select="calendar/event">
<tr>
<td><xsl:value-of select="date"/></td>
<td><xsl:value-of select="description"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
私の出力
date description
May 11 Mother's Day
May 12 Birthday
May 12 Board Meeting
望ましい出力。
date description
May 11
Mother's Day
May 12
Birthday
Board Meeting
変更する XSLT コードを提案してください。前もって感謝します 。