Rev 79 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
79 | bondari | 1 | <?xml version='1.0'?> |
2 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'> |
||
3 | |||
4 | <!-- |
||
5 | Implement inline <code/> tag |
||
6 | --> |
||
7 | <xsl:template match="code"> |
||
135 | bondari | 8 | <xsl:call-template name="inline.italicmonoseq"/> |
79 | bondari | 9 | </xsl:template> |
10 | |||
135 | bondari | 11 | |
12 | <xsl:template match="subtitle[@style='italic']"> |
||
13 | <xsl:call-template name="inline.italicmonoseq"/> |
||
14 | </xsl:template> |
||
15 | |||
79 | bondari | 16 | </xsl:stylesheet> |