summaryrefslogtreecommitdiffstats
path: root/kttsd/kttsd/SSMLtoPlainText.xsl
blob: c1c087dbd4a0859ebbbc797902076cce09fcf152 (plain)
1
2
3
4
5
6
7
8
9
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" encoding="ISO-8859-1" indent="no"/>

<xsl:template match="speak">
<xsl:value-of select="."/>
</xsl:template>

</xsl:stylesheet>