Chapter 4 - XSL Style Sheets

Summary

XSL XSL Style Sheets

<?xml version="1.0"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="html"/> <xsl:template match="/"> <HTML> <BODY> <UL> <xsl:apply-templates/> </UL> </BODY> </HTML> </xsl:template> <xsl:template match="author"> <LI> <xsl:apply-templates select="last"/>, <xsl:apply-templates select="first"/>. </LI> </xsl:template> </xsl:stylesheet>

Tranformation Instructions: Pattern Matching: