diff options
Diffstat (limited to 'LUFA/StudioIntegration')
-rw-r--r-- | LUFA/StudioIntegration/HV1/lufa_docbook_transform.xslt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/LUFA/StudioIntegration/HV1/lufa_docbook_transform.xslt b/LUFA/StudioIntegration/HV1/lufa_docbook_transform.xslt index 0959c99d6..82ad935c2 100644 --- a/LUFA/StudioIntegration/HV1/lufa_docbook_transform.xslt +++ b/LUFA/StudioIntegration/HV1/lufa_docbook_transform.xslt @@ -62,6 +62,7 @@ <!-- Add index chapter --> <xsl:call-template name="generate.top.level.page"> <xsl:with-param name="top.level.page" select="compounddef[@kind = 'page' and @id = 'indexpage']"/> + <xsl:with-param name="top.level.page.title" select="'Library Information'"/> </xsl:call-template> <!-- Add free-floating chapters --> @@ -87,10 +88,11 @@ <xsl:template name="generate.top.level.page"> <xsl:param name="top.level.page"/> + <xsl:param name="top.level.page.title" select="$top.level.page/title"/> <chapter id="{$top.level.page/@id}"> <title> - <xsl:value-of select="$top.level.page/title"/> + <xsl:value-of select="$top.level.page.title"/> </title> <xsl:apply-templates select="$top.level.page/detaileddescription"/> |