added support for definition lists

git-svn-id: file:///home/ksmith/gitmigration/svn/xmpp/trunk@2914 4b5297f7-1745-476d-ba37-a9c6900126ab
This commit is contained in:
Peter Saint-Andre 2009-03-21 04:18:54 +00:00
parent e3afb38a38
commit 84b4ac190a
1 changed files with 26 additions and 0 deletions

26
xep.xsl
View File

@ -920,6 +920,32 @@ OR OTHER DEALINGS IN THE SOFTWARE.
</td>
</xsl:template>
<xsl:template match='dl'>
<div class='indent'>
<dl>
<xsl:apply-templates/>
</dl>
</div>
</xsl:template>
<xsl:template match='di'>
<di>
<xsl:apply-templates/>
</di>
</xsl:template>
<xsl:template match='dt'>
<dt>
<strong><xsl:apply-templates/></strong>
</dt>
</xsl:template>
<xsl:template match='dd'>
<dd>
<xsl:apply-templates/>
</dd>
</xsl:template>
<xsl:template match='note'>
<xsl:variable name='notenum'>
<xsl:number level='any' count='note'/>