]> granicus.if.org Git - docbook-dsssl/commitdiff
Fix bug 3481385 - link elements not preserved inside funcsynopsis.
authorBob Stayton <bobs@sagehill.net>
Wed, 1 Feb 2012 05:07:27 +0000 (05:07 +0000)
committerBob Stayton <bobs@sagehill.net>
Wed, 1 Feb 2012 05:07:27 +0000 (05:07 +0000)
xsl/html/synop.xsl

index 22256d30bed9913864b48c37fd31e31e8ba1b940..b20e7e9791291333fd01189bc5acd01b61fa203d 100644 (file)
@@ -1551,4 +1551,20 @@ paramdef      ::= (#PCDATA|type|replaceable|parameter|funcparams)*
   <xsl:apply-templates select="."/>
 </xsl:template>
 
+<xsl:template match="link|olink|xref" mode="ansi-nontabular">
+  <xsl:apply-templates select="."/>
+</xsl:template>
+
+<xsl:template match="link|olink|xref" mode="ansi-tabular">
+  <xsl:apply-templates select="."/>
+</xsl:template>
+
+<xsl:template match="link|olink|xref" mode="kr-nontabular">
+  <xsl:apply-templates select="."/>
+</xsl:template>
+
+<xsl:template match="link|olink|xref" mode="kr-tabular">
+  <xsl:apply-templates select="."/>
+</xsl:template>
+
 </xsl:stylesheet>