Answers the footnotes dictionary from the e.lib (derived from the root document)
(self, e)
| 458 | return self.tagHistory |
| 459 | |
| 460 | def getFootnotes(self, e): |
| 461 | """Answers the footnotes dictionary from the e.lib (derived from the root document)""" |
| 462 | if self.doc is not None: |
| 463 | lib = self.doc.lib |
| 464 | if lib is not None: |
| 465 | if not 'footnotes' in lib: |
| 466 | lib['footnotes'] = {} |
| 467 | return lib['footnotes'] |
| 468 | return None |
| 469 | |
| 470 | def getLiteratureRefs(self, e): |
| 471 | """Answers the literature reference dictionary from the e.lib (derived |