Store a footnote reference id in order of appearance.
(self, id: str)
| 179 | self.footnotes[id] = text |
| 180 | |
| 181 | def addFootnoteRef(self, id: str) -> None: |
| 182 | """ Store a footnote reference id in order of appearance. """ |
| 183 | if id not in self.footnote_order: |
| 184 | self.footnote_order.append(id) |
| 185 | |
| 186 | def get_separator(self) -> str: |
| 187 | """ Get the footnote separator. """ |