home *** CD-ROM | disk | FTP | other *** search
/ Dynamic HTML in Action / Dynamicke-HTML-v-akci-covermount.bin / XML / XSL / DOWNLOADS / VIEWDEMO.ZIP / raw-xml.xsl < prev    next >
Encoding:
Text File  |  1997-12-20  |  595 b   |  21 lines

  1. <xsl>
  2.     <!-- Generic stylesheet for viewing XML -->
  3.     <!-- Note that this stylesheet does not display attributes. -->
  4.     
  5.     <rule>
  6.         <root/>
  7.         <DIV font-family="Courier" font-size="10pt">
  8.             <SPAN color="gray"><<eval>tagName</eval>></SPAN><children/><SPAN color="gray"></<eval>tagName</eval>></SPAN>
  9.         </DIV>
  10.     </rule>
  11.  
  12.     <!-- Default Rule - matches any element -->
  13.     <rule>
  14.         <target-element/>
  15.         <DIV margin-left="1em">
  16.             <SPAN color="gray"><<eval>tagName</eval>></SPAN><children/><SPAN color="gray"></<eval>tagName</eval>></SPAN>
  17.         </DIV>
  18.     </rule>
  19.  
  20. </xsl>
  21.