2007-05-15 17:48:15 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
|
|
<xsl:output method="text" encoding="utf-8"/>
|
|
|
|
|
|
|
|
<xsl:template match="/">
|
|
|
|
<xsl:apply-templates select="//transcript"/>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
<xsl:template match="transcript">
|
2007-05-15 18:56:04 +00:00
|
|
|
<xsl:value-of select="."/><xsl:text> </xsl:text>
|
2007-05-15 17:48:15 +00:00
|
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|