12 Shared

<..open xslt script..>
 <![CDATA[
    <xsl:stylesheet version="1.0"
       xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    >
       <xsl:output omit-xml-declaration = "yes" />
-_-_-

<..close xslt script..>
       <xsl:template match="*|@*|text()|comment()" >
         <xsl:copy>
           <xsl:apply-templates select="*|@*|text()|comment()" />
         </xsl:copy>
       </xsl:template>
    </xsl:stylesheet>
 ]]>
-_-_-

<..get content template..>
 <xsl:template match="*" mode="content" >
   <xsl:choose>
      <xsl:when test=" @class = ’char’ " >
        <xsl:text>x</xsl:text>
      </xsl:when>
      <xsl:when test=" not(
             (@title = ’speech-extra’) or (@class = ’accent-char’)
          ) " >
        <xsl:apply-templates select="*|text()" mode="content" />
      </xsl:when>
   </xsl:choose>
 </xsl:template>
-_-_-