"The Extensible Style Language (XSL)" by Norman Walsh Web Techniques, January 1999 Web Techniques grants permission to use these listings (and code) for private or commercial use provided that credit to Web Techniques and the author is maintained within the comments of the source. For questions, contact [email protected]. <?xml version='1.0'?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl"> <xsl:template pattern="doc"> <HTML> <HEAD> <TITLE>A Document</TITLE> <HEAD> <BODY> <xsl:process-children/> </BODY> </HTML> </xsl:template> <xsl:template pattern="title"> <H1> <xsl:process-children/> </H1> </xsl:template> <xsl:template pattern="para"> <P> <xsl:process-children/> </P> </xsl:template> <xsl:template pattern="em"> <I> <xsl:process-children/> </I> </xsl:template> <xsl:template pattern="em/em"> <B> <xsl:process-children/> </B> </xsl:template> <xsl:template pattern="figure"> <DIV> <B>Figure <xsl:number level="any" count="figure"/>.</B><BR/> <SPAN><xsl:process select="graphic"/><BR/></SPAN> <B><xsl:process select="title"/></B> </DIV> </xsl:template> <xsl:template pattern="figure/title"> <H3> <xsl:process-children/> </H3> </xsl:template> </xsl:stylesheet>

XSL The Extensible Style Language (Web Techniques, Jan 1999)
Related Reading
More Insights
INFO-LINK
![]() |
To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy. |