Suggestions
Search:
 
Next:
book (in insert.title.markup mode)
Previous:
generate.title.markup (in insert.title.markup mode)
Up:
Cross References xref.mod.xsl
Reference Section

Name

title (in insert.title.markup mode) — Format titles in xref text

Synopsis

<xsl:template match="title" mode="insert.title.markup">
<xsl:param name="title"/>
<xsl:param name="is.component">
			<xsl:choose>
				<xsl:when test="contains(local-name(..), 'info')">
					<xsl:call-template name="is.component">
						<xsl:with-param name="node" select="../.."/>
					</xsl:call-template>
				</xsl:when>
				<xsl:otherwise>
					<xsl:call-template name="is.component">
						<xsl:with-param name="node" select=".."/>
					</xsl:call-template>
				</xsl:otherwise>
			</xsl:choose>
		</xsl:param>
  ...
</xsl:template>

C. Template Parameters

title
The text.
is.component
Whether the node's parent is considered to be a “component” in the sense of DocBook.

A. Description

Calls ???.