(self, text: str)
| 471 | self.footnotes = footnotes |
| 472 | |
| 473 | def run(self, text: str) -> str: |
| 474 | text = text.replace( |
| 475 | FN_BACKLINK_TEXT, self.footnotes.getConfig("BACKLINK_TEXT") |
| 476 | ) |
| 477 | return text.replace(NBSP_PLACEHOLDER, " ") |
| 478 | |
| 479 | |
| 480 | def makeExtension(**kwargs): # pragma: no cover |