Move superscript from Endnotes to each individual report.

svn: r8751
This commit is contained in:
Brian Matherly
2007-07-21 13:23:32 +00:00
parent 2c92fd968b
commit 0b54846df9
5 changed files with 19 additions and 5 deletions

View File

@@ -595,7 +595,10 @@ class DetDescendantReport(Report):
if not obj or not self.includeSources:
return ""
return Endnotes.cite_source(self.bibli,obj)
txt = Endnotes.cite_source(self.bibli,obj)
if txt:
txt = '<super>' + txt + '</super>'
return txt
#------------------------------------------------------------------------
#