From 7a4c3be1384d17c31fc977c5326bb4f8b48c3f8c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 19 Feb 2015 12:38:05 +0530 Subject: [PATCH] ... --- src/odf/odf2xhtml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/odf/odf2xhtml.py b/src/odf/odf2xhtml.py index 46ce0bfac0..eddab6568e 100644 --- a/src/odf/odf2xhtml.py +++ b/src/odf/odf2xhtml.py @@ -898,7 +898,7 @@ dl.notes dd:last-of-type { page-break-after: avoid } # self.writeout(escape(note['citation'])) # self.closetag('sup', False) self.writeout('[') - self.opentag('a', { 'href': "#citation-%d" % key, 'id': "footnote-%d" % key }) + self.opentag('a', { 'href': "#citation-%d" % key }) self.writeout(u"\u2190%d".encode('utf-8') % key) self.closetag('a') self.writeout(u']\xa0'.encode('utf-8'))