10 lines
		
	
	
		
			283 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			283 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:b="http://www.demo.com">
 | |
|     <xsl:template match="b:books">
 | |
| 		<Library>
 | |
| 			<BookCount>
 | |
| 				<xsl:value-of select="count(b:book)" />
 | |
| 			</BookCount>
 | |
| 		</Library>
 | |
|     </xsl:template>
 | |
| </xsl:stylesheet>
 | 
