(markdown: str, html: str)
| 1200 | |
| 1201 | |
| 1202 | def _audit_scan_open_double_backtick(markdown: str, html: str) -> list[tuple[int, str]]: |
| 1203 | hits: list[tuple[int, str]] = [] |
| 1204 | for line_no, line in enumerate(markdown.splitlines(), 1): |
| 1205 | for match in _AUDIT_OPEN_DOUBLE_BACKTICK_RE.finditer(line): |
| 1206 | hits.append((line_no, _audit_snippet(line, match.start(), match.end()))) |
| 1207 | return hits |
| 1208 | |
| 1209 | |
| 1210 | def _audit_scan_giant_markdown_line(markdown: str, html: str) -> list[tuple[int, str]]: |
nothing calls this directly
no test coverage detected