Return footnote link id.
(self, id: str)
| 188 | return self.getConfig("SEPARATOR") |
| 189 | |
| 190 | def makeFootnoteId(self, id: str) -> str: |
| 191 | """ Return footnote link id. """ |
| 192 | if self.getConfig("UNIQUE_IDS"): |
| 193 | return 'fn%s%d-%s' % (self.get_separator(), self.unique_prefix, id) |
| 194 | else: |
| 195 | return 'fn{}{}'.format(self.get_separator(), id) |
| 196 | |
| 197 | def makeFootnoteRefId(self, id: str, found: bool = False) -> str: |
| 198 | """ Return footnote back-link id. """ |
no test coverage detected