3.4 Delimiters on List Marks

<..delimiters in marks of enumerated lists..>
 <xsl:template match="PROS[  parent::SENT[@class=’ol-mark’] ]" >
    <xsl:copy>
       <xsl:apply-templates
            select="*[not(@class=’char-del’)]|@*|text()|comment()" />
    </xsl:copy>
 </xsl:template>
-_-_-