Suggestions
Search:
 
Next:
refmeta
Previous:
reference
Up:
References and Entries refentry.mod.xsl
Reference Section

Name

refentry — Process refentry [2.0.9] elements

Synopsis

<xsl:template match="refentry">
<xsl:variable name="refmeta" select=".//refmeta"/>
<xsl:variable name="refentrytitle" select="$refmeta//refentrytitle"/>
<xsl:variable name="refnamediv" select=".//refnamediv"/>
<xsl:variable name="refname" select="$refnamediv//refname"/>
<xsl:variable name="title">
			<xsl:choose>
			<xsl:when test="$refentrytitle">
				<xsl:apply-templates select="$refentrytitle[1]"/>
			</xsl:when>
			<xsl:when test="$refname">
				<xsl:apply-templates select="$refname[1]"/>
				<xsl:apply-templates select="$refnamediv//refpurpose"/>
			</xsl:when>
			</xsl:choose>
		</xsl:variable>
  ...
</xsl:template>

A. Description

Invokes the mapping templates and applies content templates.

B. Pertinent Variables

There are no configuration variables for this template.

F. Further Reading