Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="UTF-8"?>
- <!--an attempt at a stylesheet-->
- <xsl:stylesheet version="1.0">
- <xsl:template match="/chronicle">
- <html>
- <head>
- <h1>The Cousin Chronicle</h1>
- <h2>
- <xsl:value-of select="book@name"/>
- </h2>
- </head>
- <body>
- <xsl:for-each select="book/msg">
- <div>
- <p class="sender">
- <xsl:value-of select="sender"/>
- </p>
- <p class="stamp">
- <xsl:value-of select="stamp"/>
- </p>
- <pre class="text">
- <xsl:value-of select="text"/>
- <pre>
- </xsl:for-each>
- </body>
- </html>
- </xsl:template>
- </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement