MCPcopy Create free account
hub / github.com/idank/explainshell / _audit_scan_visible_double_amp

Function _audit_scan_visible_double_amp

tests/evals/render/render_eval.py:1194–1199  ·  view source on GitHub ↗
(markdown: str, html: str)

Source from the content-addressed store, hash-verified

1192
1193
1194def _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
1202def _audit_scan_open_double_backtick(markdown: str, html: str) -> list[tuple[int, str]]:

Callers

nothing calls this directly

Calls 1

_audit_strip_tagsFunction · 0.85

Tested by

no test coverage detected