blob: 36bd04022d41556c75ee83a3f741474a88388553 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
"""
Process escaped chars and hardbreaks
"""
from ..common.utils import isSpace
from .state_inline import StateInline
ESCAPED = [0 for _ in range(256)]
for ch in "\\!\"#$%&'()*+,./:;<=>?@[]^_`{|}~-":
ESCAPED[ord(ch)] = 1
def escape(state: StateInline, silent: bool):
pos = state.pos
maximum = state.posMax
# /* \ */
if state.srcCharCode[pos] != 0x5C:
return False
pos += 1
if pos < maximum:
ch = state.srcCharCode[pos]
if ch < 256 and ESCAPED[ch] != 0:
if not silent:
state.pending += state.src[pos]
state.pos += 2
return True
if ch == 0x0A:
if not silent:
state.push("hardbreak", "br", 0)
pos += 1
# skip leading whitespaces from next line
while pos < maximum:
ch = state.srcCharCode[pos]
if not isSpace(ch):
break
pos += 1
state.pos = pos
return True
if not silent:
state.pending += "\\"
state.pos += 1
return True
|