1.
<?xml version="1.0" encoding="gb2312"?>
<?xml-stylesheet href="" type="text/xsl"?>
<entry>
<title>entry with images</title>
<date>August 09, 2003</date>
<author>Kevin</author>
<idnum>000033</idnum>
<permalink>/xml/archives/</permalink>
<body xmlns:html="http:///1999/xhtml"><![CDATA[]]></more>
<comment-link>/xml/archives/000033_comments.xml</comment-link>
<comment-count>6</comment-count>
</entry>
2.
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http:///1999/XSL/Transform" version="1.0">
<xsl:template match="/entry">
<html>
<head>
</head>
<body>
<xsl:value-of select="title" />
<xsl:value-of select="body" disable-output-escaping="yes"/>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
The key is the namespace xmlns:xsl="http:///1999/XSL/Transform" used and the output is added with disable-output-escaping="yes"