I am transforming xml data to html page wiith the help of xslt . I want to eliminate duplicate data where appears like this in the following way .
xml data
---------
My xslt code
-----------
Event Dates
| date | description |
|---|---|
My output
-------------
date description
May 11 Mother's Day
May 12 Birthday
May 12 Board Meeting
Desired Output.
------------------
date description
May 11
Mother's Day
May 12
Birthday
Board Meeting
Please suggest me the XSLT code to modify .
Thanks in advance .

Replies
Know the answer? Post it — somebody with the same question will find it here.