| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!-- This file is part of the DITA Open Toolkit project hosted on
- Sourceforge.net. See the accompanying license.txt file for
- applicable licenses.-->
- <!-- (c) Copyright IBM Corp. 2004, 2005 All Rights Reserved. -->
- <xsl:stylesheet version="2.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <!-- hi-d.ent Phrase domain: b | i | u | tt | sup | sub -->
- <xsl:template match="*[contains(@class,' hi-d/b ')]" name="topic.hi-d.b">
- <strong>
- <xsl:call-template name="commonattributes"/>
- <xsl:call-template name="setidaname"/>
- <xsl:apply-templates/>
- </strong>
- </xsl:template>
- <xsl:template match="*[contains(@class,' hi-d/i ')]" name="topic.hi-d.i">
- <em>
- <xsl:call-template name="commonattributes"/>
- <xsl:call-template name="setidaname"/>
- <xsl:apply-templates/>
- </em>
- </xsl:template>
- <xsl:template match="*[contains(@class,' hi-d/u ')]" name="topic.hi-d.u">
- <u>
- <xsl:call-template name="commonattributes"/>
- <xsl:call-template name="setidaname"/>
- <xsl:apply-templates/>
- </u>
- </xsl:template>
- <xsl:template match="*[contains(@class,' hi-d/tt ')]" name="topic.hi-d.tt">
- <tt>
- <xsl:call-template name="commonattributes"/>
- <xsl:call-template name="setidaname"/>
- <xsl:apply-templates/>
- </tt>
- </xsl:template>
- <xsl:template match="*[contains(@class,' hi-d/sup ')]" name="topic.hi-d.sup">
- <sup>
- <xsl:call-template name="commonattributes"/>
- <xsl:call-template name="setidaname"/>
- <xsl:apply-templates/>
- </sup>
- </xsl:template>
- <xsl:template match="*[contains(@class,' hi-d/sub ')]" name="topic.hi-d.sub">
- <sub>
- <xsl:call-template name="commonattributes"/>
- <xsl:call-template name="setidaname"/>
- <xsl:apply-templates/>
- </sub>
- </xsl:template>
- <xsl:template match="*[contains(@class,' hi-d/line-through ')]" name="topic.hi-d.line-through">
- <span style="text-decoration:line-through">
- <xsl:call-template name="commonattributes"/>
- <xsl:call-template name="setidaname"/>
- <xsl:apply-templates/>
- </span>
- </xsl:template>
- <xsl:template match="*[contains(@class,' hi-d/overline ')]" name="topic.hi-d.overline">
- <span style="text-decoration:overline">
- <xsl:call-template name="commonattributes"/>
- <xsl:call-template name="setidaname"/>
- <xsl:apply-templates/>
- </span>
- </xsl:template>
- </xsl:stylesheet>
|