hello.xsl 587 B

12345678910111213141516171819
  1. <?xml version="1.0"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  3. <xsl:template match="/hello-world">
  4. <HTML>
  5. <HEAD>
  6. <TITLE></TITLE>
  7. </HEAD>
  8. <BODY>
  9. <H1>
  10. <xsl:value-of select="greeting"/>
  11. </H1>
  12. <xsl:apply-templates select="greeter"/>
  13. </BODY>
  14. </HTML>
  15. </xsl:template>
  16. <xsl:template match="greeter">
  17. <DIV>from <I><xsl:value-of select="."/></I></DIV>
  18. </xsl:template>
  19. </xsl:stylesheet>