I want to turn a date like this in XSLT 2.0:
<unitdate>September 9, 2018</unitdate>
to
<unitdate>2018 September 9</unitdate>
or this:
<unitdate>June 1976</unitdate>
to
<unitdate>1976 June</unitdate>
I don't have any standardized XS dates to start with.
I have an identity transform:
<xsl:template match="node() | @*">
<xsl:copy>
<xsl:apply-templates select="node() | @*"/>
</xsl:copy>
</xsl:template>
And then this is what I have started:
<xsl:template match="//unitdate">
</xsl:template>