Guest User

Untitled

a guest
Mar 24th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <xsl:template match="/">
  2. <xsl:apply-templates select="libaray/books/book"/>
  3. </xsl:template>
  4.  
  5. <xsl:template match="book">
  6. <xsl:value-of select="title"/>
  7. <xsl:value-of select="pages"/>
  8. </xsl:template>
Add Comment
Please, Sign In to add comment