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

Function isWhiteSpace

markdown_it/common/utils.py:187–191  ·  view source on GitHub ↗

r"""Zs (unicode class) || [\t\f\v\r\n]

(code: int)

Source from the content-addressed store, hash-verified

185
186
187def isWhiteSpace(code: int) -> bool:
188 r"""Zs (unicode class) || [\t\f\v\r\n]"""
189 if code >= 0x2000 and code <= 0x200A:
190 return True
191 return code in MD_WHITESPACE
192
193
194# //////////////////////////////////////////////////////////////////////////////

Callers 2

process_inlinesFunction · 0.85
scanDelimsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…