PDF Output: Fix links that go to destinations in the same file not working. Fixes #1849529 [Footnotes Broken When Converting From EPUB to PDF](https://bugs.launchpad.net/calibre/+bug/1849529)

This commit is contained in:
Kovid Goyal 2019-11-03 14:44:34 +05:30
parent 018bf4697b
commit 580d0e2ba7
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -447,11 +447,9 @@ def make_anchors_unique(container, log):
url += '#'
if url.startswith('#'):
href, frag = base, url[1:]
name = base
else:
href, frag = url.partition('#')[::2]
if base is None:
name = href
else:
name = container.href_to_name(href, base)
if not name:
return url.rstrip('#')