Skip to content

Commit 3167d51

Browse files
committed
Trying to get the custom xrefs working again
1 parent b18f233 commit 3167d51

File tree

1 file changed

+32
-2
lines changed

1 file changed

+32
-2
lines changed

theme/pdf/pdf.xsl

+32-2
Original file line numberDiff line numberDiff line change
@@ -200,12 +200,42 @@
200200
<!-- Overrides xrefgen.xsl -->
201201

202202
<!-- Custom xrefs to numbered sections -->
203-
<xsl:template match="h:section[@data-type='sect1' or @data-type='sect2']" mode="xref-to">
203+
<xsl:template match="h:section[@data-type='sect1']" mode="xref-to">
204204
<xsl:param name="referrer"/>
205205
<xsl:param name="xrefstyle"/>
206206
<xsl:param name="verbose" select="1"/>
207207
<xsl:choose>
208-
<xsl:when test="(h:section[@data-type='sect1']/h:h1 or h:section[data-type='sect2']/h:h2)">
208+
<xsl:when test="h:h1">
209+
<xsl:apply-templates select="." mode="object.xref.markup">
210+
<xsl:with-param name="purpose" select="'xref'"/>
211+
<!-- BEGIN OVERRIDE -->
212+
<xsl:with-param name="xrefstyle" select="'template: %n %t'"/>
213+
<!-- END OVERRIDE -->
214+
<xsl:with-param name="referrer" select="$referrer"/>
215+
<xsl:with-param name="verbose" select="$verbose"/>
216+
</xsl:apply-templates>
217+
</xsl:when>
218+
<xsl:otherwise>
219+
<!-- Otherwise, throw warning, and print out ??? -->
220+
<xsl:call-template name="log-message">
221+
<xsl:with-param name="type" select="'WARNING'"/>
222+
<xsl:with-param name="message">
223+
<xsl:text>Cannot output gentext for XREF to section (id:</xsl:text>
224+
<xsl:value-of select="@id"/>
225+
<xsl:text>)</xsl:text>
226+
</xsl:with-param>
227+
</xsl:call-template>
228+
<xsl:text>???</xsl:text>
229+
</xsl:otherwise>
230+
</xsl:choose>
231+
</xsl:template>
232+
233+
<xsl:template match="h:section[@data-type='sect2']" mode="xref-to">
234+
<xsl:param name="referrer"/>
235+
<xsl:param name="xrefstyle"/>
236+
<xsl:param name="verbose" select="1"/>
237+
<xsl:choose>
238+
<xsl:when test="h:h2">
209239
<xsl:apply-templates select="." mode="object.xref.markup">
210240
<xsl:with-param name="purpose" select="'xref'"/>
211241
<!-- BEGIN OVERRIDE -->

0 commit comments

Comments
 (0)