Hello Team,
We have a list of terms and descriptions defined as dlentries and we have applied the table customization while generating the pdf-css-html output.
We have taken the xlst from here
The dlentries are kept as a separate topic and referred to the required topics.
The pdf is breaking at the interlinks. It does not show the page number
How can it be resolved?
Thanks
Pdf inline links to definition table not working
-
- Posts: 166
- Joined: Wed Oct 16, 2019 3:47 pm
Re: Pdf inline links to definition table not working
Hello,
You need to update the following template, it misses 2 call-templates:
I will update the documentation to add these lines too.
Regards,
Julien
You need to update the following template, it misses 2 call-templates:
Code: Select all
<xsl:template match="*[contains(@class, ' topic/dlentry ')]">
<tr>
<xsl:call-template name="commonattributes"/>
<xsl:call-template name="setidaname"/>
<xsl:apply-templates/>
</tr>
</xsl:template>
Regards,
Julien
Re: Pdf inline links to definition table not working
Thanks for the help, it resolved the issue.