XML

From Wiki
Jump to navigation Jump to search

Sites[edit]


Inclure un fichier XSL dans XML <syntaxhighlight lang="xml"> <?xml-stylesheet type="text/xsl" href="breakfast_menu.xsl" ?> </syntaxhighlight>


RSS <syntaxhighlight lang="xml"> <?xml version="1.0" encoding="UTF-8"?> <html xsl:version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <body style="font-family:Arial;font-size:12pt;background-color:#EEEEEE">

<xsl:for-each select="rss/channel">

<xsl:value-of select="title"/>

</xsl:for-each>

<xsl:for-each select="rss/channel/item">

<a href=>

<xsl:value-of select="title"/>

</a>
   <xsl:value-of select="link"/>
<xsl:value-of select="description"/>

</xsl:for-each>

</body> </html> </syntaxhighlight>