Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
classes [2019/08/15 09:32] adminclasses [Unknown date] (current) – removed - external edit (Unknown date) 127.0.0.1
Line 1: Line 1:
-====== Available units and classes ====== 
  
-&&XML&& 
-  
-<xml> 
-<book>Book 1</book> 
-<book>Book 2</book> 
-</xml> 
-  
-&&XSLT&& 
-  
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/TR/REC-html40"> 
-<xsl:template match="/">List of books : <ul><xsl:apply-templates /></ul></xsl:template> 
-<xsl:template match="book"><li><b><xsl:apply-templates /></b></li></xsl:template> 
-</xsl:stylesheet> 
-  
-&&END&&