Re: How add angled brackets to <sgmltag class="element">?
>>>>> Jeff Beal <>: > (For HTML): > <xsl:template match="sgmltag[@class='element']"> > <code><<xsl:apply-templates/>></code> > </xsl:template> > For FO, just change the <code> into an <fo:inline/> with an appropriate > font-family > <xsl:template match="sgmltag[@class='element']"> > <fo:inline font-family="Courier"><<xsl:apply-templates/>></fo:inline> > </xsl:template> Thanx Jeff! This works great!