(elem)
| 631 | def buildExtension(self): |
| 632 | """ Build an extension which registers `fakeSerializer`. """ |
| 633 | def fakeSerializer(elem): |
| 634 | # Ignore input and return hard-coded output |
| 635 | return '<div><p>foo</p></div>' |
| 636 | |
| 637 | class registerFakeSerializer(markdown.extensions.Extension): |
| 638 | def extendMarkdown(self, md): |
nothing calls this directly
no outgoing calls
no test coverage detected