No doubt this will be something obvious, but the following code has 2 errors on the marked line:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:date="http://exslt.org/dates-and-times"
extension-element-prefixes="date">
<xsl:import href="date/date.xsl" />
<xsl:template match="//day">
<td>
<date:day-in-month(<xsl:value-of select='@start_date' />)/> <!--problem here-->
</td>
</xsl:template>
</xsl:stylesheet>
The errors are:
- Tag missing closing bracket '>'
- Missing end tag "date:day-in-month"
So far as I can see neither of those is the case. Any thoughts, or am I just blind?