<?xml version="1.0" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:unic="http://www.uni-c.dk/namespace/"
	exclude-result-prefixes="dc content unic">
	<xsl:output method="html"/>

	<xsl:template match="/">
		<xsl:apply-templates/>
	</xsl:template>

	<xsl:template match="item">
		<xsl:value-of select="content:encoded" disable-output-escaping="yes"/>
	</xsl:template>
</xsl:stylesheet>

