home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0" encoding="UTF-8"?>
-
- <xsl:stylesheet
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:html="http://www.w3.org/TR/html4/loose.dtd"
- exclude-result-prefixes="html"
- version="1.0">
-
- <xsl:import href="Variables.xsl"/>
-
- <xsl:output method="html" omit-xml-declaration="yes" encoding="UTF-8"/>
-
- <xsl:param name="text_mode">false</xsl:param>
-
- <xsl:template match="/">
- <xsl:choose>
- <xsl:when test="$text_mode = 'true'">
- <xsl:apply-templates mode="text_mode"/>
- </xsl:when>
- <xsl:otherwise>
- <xsl:apply-templates/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
-
- <xsl:template match="charundef | charemph | charfont" mode="text_mode">
- <xsl:value-of select="@char"/><xsl:apply-templates mode="text_mode"/>
- </xsl:template>
-
- <xsl:template match="*" mode="text_mode">
- <xsl:apply-templates mode="text_mode"/>
- </xsl:template>
-
- </xsl:stylesheet>
-