(self, pattern: str)
| 436 | class BacktickInlineProcessor(InlineProcessor): |
| 437 | """ Return a `<code>` element containing the escaped matching text. """ |
| 438 | def __init__(self, pattern: str): |
| 439 | InlineProcessor.__init__(self, pattern) |
| 440 | self.ESCAPED_BSLASH = '{}{}{}'.format(util.STX, ord('\\'), util.ETX) |
| 441 | self.tag = 'code' |
| 442 | """ The tag of the rendered element. """ |
| 443 | |
| 444 | def handleMatch(self, m: re.Match[str], data: str) -> tuple[etree.Element | str, int, int]: |
| 445 | """ |