We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c22a0b8 commit 50acab6Copy full SHA for 50acab6
src/mdformat/codepoints/__init__.py
@@ -10,7 +10,7 @@
10
from mdformat.codepoints._unicode_punctuation import UNICODE_PUNCTUATION
11
from mdformat.codepoints._unicode_whitespace import UNICODE_WHITESPACE
12
13
-ASCII_CTRL = frozenset(chr(i) for i in range(32))
+ASCII_CTRL = frozenset(chr(i) for i in range(32)) | frozenset(chr(127))
14
15
16
def __getattr__(name: str) -> frozenset[str]:
0 commit comments