rickroll.xml
x
<!-- https://docs.google.com/document/d/1d_YtTkojlM1oqdzGxGzTyTZkokfvOKRA_5H3776NdBg/edit?usp=sharing --><!-- https://www.w3schools.com/xml/tryxslt.asp?xmlfile=cdcatalog&xsltfile=cdcatalog_ex2 --><!-- https://www.diffchecker.com/lAa22HvK --><rickroll> <part> <verse> <ligne>We're no strangers to love</ligne> <ligne>You know the rules and so do I</ligne> <ligne>A full commitment's what I'm thinking of</ligne> <ligne>You wouldn't get this from any other guy</ligne> </verse>
<pre-chorus> <ligne>I just wanna tell you how I'm feeling</ligne> <ligne>Gotta make you understand</ligne> </pre-chorus>
<chorus> <ligne>Never gonna give you up</ligne> <ligne>Never gonna let you down</ligne> <ligne>Never gonna run around and desert you</ligne> </chorus>
<chorus> <ligne>Never gonna make you cry</ligne> <ligne>Never gonna say goodbye</ligne> <ligne>Never gonna tell a lie and hurt you</ligne> </chorus> </part>
<part> <verse> <ligne>We've known each other for so long</ligne> <ligne>Your heart's been aching but you're too shy to say it</ligne> <ligne>Inside we both know what's been going on</ligne> <ligne>We know the game and we're gonna play it</ligne> </verse>
<pre-chorus> <ligne>And if you ask me how I'm feeling</ligne> <ligne>Don't tell me you're too blind to see</ligne> </pre-chorus>
<chorus> <ligne>Never gonna give you up</ligne> <ligne>Never gonna let you down</ligne> <ligne>Never gonna run around and desert you</ligne> </chorus>
<chorus> <ligne>Never gonna make you cry</ligne> <ligne>Never gonna say goodbye</ligne> <ligne>Never gonna tell a lie and hurt you</ligne> </chorus>
<chorus> <ligne>Never gonna give you up</ligne> <ligne>Never gonna let you down</ligne> <ligne>Never gonna run around and desert you</ligne> </chorus>
<chorus> <ligne>Never gonna make you cry</ligne> <ligne>Never gonna say goodbye</ligne> <ligne>Never gonna tell a lie and hurt you</ligne> </chorus> </part>
<part> <bridge> <ligne>Never gonna give, never gonna give</ligne> <ligne>(Give you up)</ligne> </bridge> </part>
<part> <verse> <ligne>We've known each other for so long</ligne> <ligne>Your heart's been aching but you're too shy to say it</ligne> <ligne>Inside we both know what's been going on</ligne> <ligne>We know the game and we're gonna play it</ligne> </verse>
<pre-chorus> <ligne>I just wanna tell you how I'm feeling</ligne> <ligne>Gotta make you understand</ligne> </pre-chorus>
<chorus> <ligne>Never gonna give you up</ligne> <ligne>Never gonna let you down</ligne> <ligne>Never gonna run around and desert you</ligne> </chorus>
<chorus> <ligne>Never gonna make you cry</ligne> <ligne>Never gonna say goodbye</ligne> <ligne>Never gonna tell a lie and hurt you</ligne> </chorus> </part>
<part> <chorus> <ligne>Never gonna give you up</ligne> <ligne>Never gonna let you down</ligne> <ligne>Never gonna run around and desert you</ligne> </chorus>
<chorus> <ligne>Never gonna make you cry</ligne> <ligne>Never gonna say goodbye</ligne> <ligne>Never gonna tell a lie and hurt you</ligne> </chorus>
<chorus> <ligne>Never gonna give you up</ligne> <ligne>Never gonna let you down</ligne> <ligne>Never gonna run around and desert you</ligne> </chorus>
<chorus> <ligne>Never gonna make you cry</ligne> <ligne>Never gonna say goodbye</ligne> </chorus> </part></rickroll>
style.xsl
xxxxxxxxxx <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="rickroll"> <html>
<head> </head>
<body> <xsl:for-each select="*/*"> <xsl:for-each select="ligne"> <p> <xsl:value-of select="." /> </p> </xsl:for-each> </xsl:for-each> </body>
</html> </xsl:template></xsl:stylesheet>