<?xml version="1.0" encoding="UTF-8"?>
<!-- ======================================================================
*  $Id: Content.xsl,v 1.1 2005/05/12 14:15:46 nzawa Exp nzawa $
*
*  Copyright (c) 2005 Nzawa
*
*  Usage of the works is permitted provided that this instrument
*  is retained with the works, so that any entity that uses the works
*  is notified of this instrument.
*
*  DISCLAIMER: THE WORKS ARE WITHOUT WARRANTY. 
*
*  [2004, Fair License: rhid.com/fair]
 ====================================================================== -->
<xsl:stylesheet
	version="1.0"
	xmlns="http://www.w3.org/1999/xhtml"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	exclude-result-prefixes="content">


<!--
	disable-output-escaping が働かない処理系有り。
	セキュリティ上の問題点にも留意のこと。
-->
<xsl:template mode="ext_headline" match="content:encoded">
	<dd>
		<xsl:text>内容： </xsl:text>
		<xsl:value-of select="." disable-output-escaping="yes"/>
	</dd>
</xsl:template>


</xsl:stylesheet>
