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

Function _audit_scan_empty_emphasis

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

Source from the content-addressed store, hash-verified

1143
1144
1145def _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
1152def _audit_scan_roff_named(markdown: str, html: str) -> list[tuple[int, str]]:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected