(self, footnotes: FootnoteExtension)
| 480 | class FootnotePostprocessor(Postprocessor): |
| 481 | """ Replace placeholders with html entities. """ |
| 482 | def __init__(self, footnotes: FootnoteExtension): |
| 483 | self.footnotes = footnotes |
| 484 | |
| 485 | def run(self, text: str) -> str: |
| 486 | text = text.replace( |
nothing calls this directly
no outgoing calls
no test coverage detected