I have xml like below
<Root>
<Element StartDate="2013/12/24"/>
<Element StartDate="2013/12/20"/>
<Element StartDate="2013/12/31"/>
<Element StartDate="2013/12/30"/>
</Root>
How do I get only max date from it using xslt 1.0. Format is YYYY/MM/DD
<Root>
<Element StartDate="2013/12/31"/>
</Root>