Return string content of `group(1)` of a matching pattern.
(self, m: re.Match[str], data: str)
| 338 | class SimpleTextInlineProcessor(InlineProcessor): |
| 339 | """ Return a simple text of `group(1)` of a Pattern. """ |
| 340 | def handleMatch(self, m: re.Match[str], data: str) -> tuple[str, int, int]: |
| 341 | """ Return string content of `group(1)` of a matching pattern. """ |
| 342 | return m.group(1), m.start(0), m.end(0) |
| 343 | |
| 344 | |
| 345 | class EscapeInlineProcessor(InlineProcessor): |
nothing calls this directly
no outgoing calls
no test coverage detected