Mega Code Archive

 
Categories / XML / XSLT StyleSheet
 

Match all from root

File: Data.xml <?xml version="1.0"?> <message>   You can add processing instructions to a document with the   <courier>processing-instruction</courier>   element. </message> File: Transform.xslt <stylesheet version="1.0"   xmlns="http://www.w3.org/1999/XSL/Transform">   <output method="text" />   <template match="/">     Message:     <apply-templates />   </template> </stylesheet> Output:     Message:        You can add processing instructions to a document with the   processing-instruction   element.