(markdown: str, html: str)
| 1192 | |
| 1193 | |
| 1194 | def _audit_scan_visible_double_amp(markdown: str, html: str) -> list[tuple[int, str]]: |
| 1195 | text = _audit_strip_tags(html) |
| 1196 | return [ |
| 1197 | (match.start(), match.group(0)) |
| 1198 | for match in _AUDIT_VISIBLE_DOUBLE_AMP_RE.finditer(text) |
| 1199 | ] |
| 1200 | |
| 1201 | |
| 1202 | def _audit_scan_open_double_backtick(markdown: str, html: str) -> list[tuple[int, str]]: |
nothing calls this directly
no test coverage detected