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

Function isLetter

markdown_it/rules_inline/html_inline.py:7–10  ·  view source on GitHub ↗
(ch: int)

Source from the content-addressed store, hash-verified

5
6
7def isLetter(ch: int) -> bool:
8 lc = ch | 0x20 # to lower case
9 # /* a */ and /* z */
10 return (lc >= 0x61) and (lc <= 0x7A)
11
12
13def html_inline(state: StateInline, silent: bool) -> bool:

Callers 1

html_inlineFunction · 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…