Guest User

Untitled

a guest
Aug 10th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. XSLT - Passing params from one template to another
  2. <xsl:variable name="date.format">%B %d, %Y</xsl:variable>
  3. <xsl:variable name="someDate">
  4. <xsl:call-template name="dt:format-date-time">
  5. <xsl:with-param name="xsd-date-time" select="//someDate"/>
  6. <xsl:with-param name="format" select="$date.format"/>
  7. </xsl:call-template>
  8. </xsl:variable>
Add Comment
Please, Sign In to add comment