(markdown: str, html: str)
| 1143 | |
| 1144 | |
| 1145 | def _audit_scan_empty_emphasis(markdown: str, html: str) -> list[tuple[int, str]]: |
| 1146 | return [ |
| 1147 | (match.start(), match.group(0)) |
| 1148 | for match in _AUDIT_EMPTY_EMPHASIS_RE.finditer(html) |
| 1149 | ] |
| 1150 | |
| 1151 | |
| 1152 | def _audit_scan_roff_named(markdown: str, html: str) -> list[tuple[int, str]]: |
nothing calls this directly
no outgoing calls
no test coverage detected