(self, md)
| 48 | super().__init__(**kwargs) |
| 49 | |
| 50 | def extendMarkdown(self, md): |
| 51 | self.md = md |
| 52 | |
| 53 | # append to end of inline patterns |
| 54 | WIKILINK_RE = r'\[\[([\w0-9_ -]+)\]\]' |
| 55 | wikilinkPattern = WikiLinksInlineProcessor(WIKILINK_RE, self.getConfigs()) |
| 56 | wikilinkPattern.md = md |
| 57 | md.inlinePatterns.register(wikilinkPattern, 'wikilink', 75) |
| 58 | |
| 59 | |
| 60 | class WikiLinksInlineProcessor(InlineProcessor): |
nothing calls this directly
no test coverage detected