With XSL-FO (Fop), I succeeded in creating a link to an external PDF :
<fo:basic-link show-destination="new">
<xsl:attribute name="external-destination">foo.pdf</xsl:attribute>
</fo:basic-link>
But now, I would like to reach an anchor in this external PDF. So I tried to build something like that :
<fo:basic-link show-destination="new">
<xsl:attribute name="external-destination">foo.pdf#anchorId</xsl:attribute>
</fo:basic-link>
Unfortunately, when I click on the generated link, I get an error. It tries to open the document foo.pdf%23anchorId.
In my .fo file, the link is correct with a # but this # is misinterpreted during the transformation in PDF.
Do you have an idea to solve this issue ?
Thanks,
Johann
