Renerence entities : entity « XSLT stylesheet « XML






Renerence entities


File: Data.xml

<employee hireDate="09/01/1998">
  <last>A</last>
  <first>B</first>
  <salary>9500</salary>
</employee>
File: Transform.xslt

<!DOCTYPE stylesheet [
<!ENTITY space "<xsl:text> </xsl:text>">
<!ENTITY cr "<xsl:text>
</xsl:text>">
]>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="1.0">
  <xsl:output method="xml" omit-xml-declaration="yes" />

  <xsl:template match="employee">
    Hire Date:
    <xsl:apply-templates select="@hireDate" />
    &cr;
    Name:
    <xsl:apply-templates select="first" />
    &space;
    <xsl:apply-templates select="last" />
  </xsl:template>

</xsl:stylesheet>
Output:


    Hire Date:
    09/01/1998

    Name:
    B A

 








Related examples in the same category

1.Define entity in style sheet
2.Output entities
3.Define and use entites
4.Use entities to wrap style sheet