<xsl:variable name="filename">
<xsl:call-template name="make-relative-filename">
<xsl:with-param name="base.dir" select="$base.dir"/>
- <xsl:with-param name="base.name" select="concat($id,$html.ext)"/>
+ <xsl:with-param name="base.name" select="concat('ln-',$id,$html.ext)"/>
</xsl:call-template>
</xsl:variable>
<xsl:apply-templates select="." mode="title.markup"/>
</xsl:variable>
- <xsl:variable name="href">
- <xsl:apply-templates mode="chunk-filename" select="."/>
- </xsl:variable>
-
- <a href="{$href}">
+ <a href="{concat('ln-',$id,$html.ext)}">
<xsl:copy-of select="$title"/>
</a>