]> granicus.if.org Git - docbook-dsssl/commitdiff
anchor template now checks to see if fo:inline or fo:block should be used.
authorBob Stayton <bobs@sagehill.net>
Sun, 9 Oct 2011 20:51:44 +0000 (20:51 +0000)
committerBob Stayton <bobs@sagehill.net>
Sun, 9 Oct 2011 20:51:44 +0000 (20:51 +0000)
Fixes bug 3324138.

xsl/fo/xref.xsl

index fceac5b558d7abe42d207a0c79d7c64ceecea951..0e475dda06d884aacb659b7282fe7f42f936e0ba 100644 (file)
   <xsl:variable name="id">
     <xsl:call-template name="object.id"/>
   </xsl:variable>
-  <fo:inline id="{$id}"/>
+
+  <xsl:variable name="wrapper.name">
+    <xsl:call-template name="inline.or.block"/>
+  </xsl:variable>
+
+  <xsl:element name="{$wrapper.name}">
+    <xsl:attribute name="id">
+      <xsl:value-of select="$id"/>
+    </xsl:attribute>
+  </xsl:element>
 </xsl:template>
 
 <!-- ==================================================================== -->