Return footnote link id.
(self, id: str)
| 176 | return self.getConfig("SEPARATOR") |
| 177 | |
| 178 | def makeFootnoteId(self, id: str) -> str: |
| 179 | """ Return footnote link id. """ |
| 180 | if self.getConfig("UNIQUE_IDS"): |
| 181 | return 'fn%s%d-%s' % (self.get_separator(), self.unique_prefix, id) |
| 182 | else: |
| 183 | return 'fn{}{}'.format(self.get_separator(), id) |
| 184 | |
| 185 | def makeFootnoteRefId(self, id: str, found: bool = False) -> str: |
| 186 | """ Return footnote back-link id. """ |
no test coverage detected