|
||||||||||||||||
XSLT Transformation Engine OverviewThe XMLTransformer component performs the transformation based on a specific template. The transformation template contains rules to be applied when a specified node is matched. The match attribute is used to associate the template with an XML element. This match attribute can also be used to define a template for a whole branch of an XML document (match="/" defines the whole document). For more information, see https://www.w3schools.com/xml/xsl_intro.asp. XSLT Syntax<xsl:template name="name" match="pattern" mode="mode" priority="number"> <!-- Content:(<xsl:param>*,template) --> </xsl:template> Attributes
|