Pulling my hair out ...
Working with the reports module, and trying to use a xslt visualiser to present some data in a html table
Addet html tags to my xslt stylesheet, but they get converted/escaped and returned as:
<html><body><table><tr><th style="width:16%;"
etc ...
xslt looks like this:
<?xml version="1.0" encoding="utf-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/" >
<html>
<body>
<table>
<tr>
<th style="width:16%;" class="Jdate" title="Date"></th>
<th style="width:16%;" class="Jtype" title="Jtype"></th>
<th style="width:16%;" class="Jtype2" title="Jtype2"></th>
<th style="width:16%;" class="Juser" title="User"></th>
<th style="width:16%;" class="Jatt" title="Attributes"></th>
</tr>
<xsl:for-each select="DocumentElement/QueryResults">
<tr>
<td> <xsl:value-of select="Date"/></td>
<td><xsl:value-of select="Jtype"/></td>
<td><xsl:value-of select="Jtype2"/></td>
<td><xsl:value-of select="User"/></td>
<td><xsl:value-of select="Attributes"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
//A