Regenerate after previous commit.
This commit is contained in:
parent
0db92e7d5a
commit
e22b65d209
1 changed files with 20 additions and 0 deletions
|
@ -101,12 +101,32 @@
|
|||
<xsl:text>)</xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="link[@url]">
|
||||
<a href="{@url}">
|
||||
<xsl:apply-templates/>
|
||||
</a>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="link[@id and not(@doc)]">
|
||||
<a href="#{@id}">
|
||||
<xsl:apply-templates/>
|
||||
</a>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="link[@doc and not(@id)]">
|
||||
|
||||
<a href="{substring-before(@doc, '.xml')}.html">
|
||||
<xsl:apply-templates/>
|
||||
</a>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="link[@id and @doc]">
|
||||
|
||||
<a href="{substring-before(@doc, '.xml')}.html#{@id}">
|
||||
<xsl:apply-templates/>
|
||||
</a>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="link">
|
||||
<u>
|
||||
<xsl:apply-templates/>
|
||||
|
|
Loading…
Reference in a new issue