From the above XSL: I have modified and rewritten the xsl for XPATH:
<xsl:template match='list[@type="number"]/listItem/para'>
<LI Style="list-style-type: arabic; font-family: Times New Roman; font-size:9pt; font-weight:normal;">
<xsl:apply-templates/>
</LI>
</xsl:template>
<xsl:template match='list[@type="number"]/list[@type="number"]'>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match='list//list/listItem/para'>
<LI Style="list-style-type: arabic; font-family: Times New Roman; font-size:9pt; font-weight:normal;">
<xsl:apply-templates/>
</LI>
</xsl:template>
Please correct me the xpath for matching nested para element in the list tag.
Expecting your reply...
|