Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 2nd, 2012  |  syntax: None  |  size: 0.23 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  2.  
  3. <xsl:output method="xml" indent="yes" />
  4.  
  5. <xsl:template match="/">
  6.         <hi>
  7.                 <xsl:value-of select="data/hello" />
  8.         </hi>
  9. </xsl:template>
  10.  
  11. </xsl:stylesheet>