MCPcopy Create free account
hub / github.com/executablebooks/markdown-it-py / stripEscape

Function stripEscape

markdown_it/common/utils.py:134–136  ·  view source on GitHub ↗

Strip escape \\ characters

(string: str)

Source from the content-addressed store, hash-verified

132
133
134def stripEscape(string: str) -> str:
135 """Strip escape \\ characters"""
136 return ESCAPE_CHAR.sub(r"\1", string)
137
138
139def escapeHtml(raw: str) -> str:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…