3845: In NarrativeWeb plugin, would like to remove the <sup> from the source annotations, by adamplumb

svn: r15131
This commit is contained in:
Doug Blank 2010-04-15 04:12:27 +00:00
parent abcc901da6
commit 8c429cdb4e

View File

@ -345,12 +345,10 @@ class BasePage(object):
text = ""
if len(gid_list):
text += " <sup>"
for ref in gid_list:
index, key = self.bibli.add_reference(ref)
id_ = "%d%s" % (index+1, key)
text += '<a href="#sref%s">%s</a>' % (id_, id_)
text += "</sup> "
# return citation list text to its callers
return text