Regenerate after previous commit.
This commit is contained in:
parent
c9e169e0d6
commit
0f08a4f1bc
2 changed files with 34 additions and 1 deletions
|
@ -59,6 +59,15 @@
|
|||
</code>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="dq">
|
||||
|
||||
<xsl:text disable-output-escaping="yes">&ldquo;</xsl:text>
|
||||
|
||||
<xsl:apply-templates/>
|
||||
|
||||
<xsl:text disable-output-escaping="yes">&rdquo;</xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="example">
|
||||
<blockquote>
|
||||
<pre>
|
||||
|
@ -122,6 +131,30 @@
|
|||
</li>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="list[@type='tag']">
|
||||
<dl compact="">
|
||||
<xsl:apply-templates/>
|
||||
</dl>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="tag-name">
|
||||
<dt>
|
||||
<xsl:apply-templates/>
|
||||
</dt>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="tag-desc">
|
||||
<dd>
|
||||
<xsl:apply-templates/>
|
||||
</dd>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="pathname">
|
||||
<code>
|
||||
<xsl:apply-templates/>
|
||||
</code>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="argument">
|
||||
<code>
|
||||
<i>
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
<code> </code>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
|
||||
|
||||
<code>
|
||||
|
||||
<xsl:apply-templates/>
|
||||
|
|
Loading…
Reference in a new issue