(match: re.Match[str])
| 180 | |
| 181 | |
| 182 | def preserve_shape(match: re.Match[str]) -> str: |
| 183 | return "".join("\n" if char == "\n" else " " for char in match.group(0)) |
| 184 | |
| 185 | |
| 186 | def mask_ignored_markdown_blocks(text: str) -> str: |
nothing calls this directly
no outgoing calls
no test coverage detected