/ Published in: XML
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<![CDATA[ <?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet version="1.0" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="xml" indent="yes" /> <!--<xsl:template match="@* | node()">--> <xsl:template match="/"> <html> <head> <link rel="stylesheet" type="text/css" href="BeckmanCoulter_Comments.css"/> </head> <body> <h2>Word Comments<!--: <xsl:value-of select="b:LIS2A2Spec/@name"/>--></h2> <xsl:for-each select="w:comments/w:comment"> <br /> <xsl:value-of select="./@w:author"/> (<xsl:value-of select="./@w:initials"/>)   |   <xsl:value-of select="./@w:date"/> <br /> <xsl:value-of select="."/> <br /> </xsl:for-each> <br/> <hr/> <br/> </body> </html> </xsl:template> </xsl:stylesheet> ]]>