Added escape sequences
This commit is contained in:
parent
85a6a957aa
commit
e5adcff1af
12 changed files with 87 additions and 7 deletions
|
@ -76,7 +76,7 @@ func Tokenize(buffer []byte) List {
|
|||
i++
|
||||
|
||||
for i < Position(len(buffer)) {
|
||||
if buffer[i] == limiter {
|
||||
if buffer[i] == limiter && (buffer[i-1] != '\\' || buffer[i-2] == '\\') {
|
||||
end = i + 1
|
||||
i++
|
||||
break
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue