Return string content of `group(2)` of a matching pattern.
(self, m: re.Match[str])
| 331 | class SimpleTextPattern(Pattern): # pragma: no cover |
| 332 | """ Return a simple text of `group(2)` of a Pattern. """ |
| 333 | def handleMatch(self, m: re.Match[str]) -> str: |
| 334 | """ Return string content of `group(2)` of a matching pattern. """ |
| 335 | return m.group(2) |
| 336 | |
| 337 | |
| 338 | class SimpleTextInlineProcessor(InlineProcessor): |
nothing calls this directly
no outgoing calls
no test coverage detected