[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]
Subject: Re: [docbook-apps] Generating title for "link" element
|
OK, the stylesheets are set up to generate common
attributes, but not all of them are turned on. In the case of the title
attribute, it can be generated by creating a template in your customization
layer with a match on link element and mode="html.title.attribute", and the
stylesheet will insert it on the <a> output element for
link:
<xsl:template match="link"
mode="html.title.attribute">
<xsl:attribute name="title"> <xsl:apply-templates/> </xsl:attribute> </xsl:template>
|
[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]