Closed close2 closed 8 months ago
Fixes issue #70.
If inside an unquoted string, text-delimiters are ignored instead of swallowed. This (partially?) fixes issue #70. Example: "A B", "C, D" will now produce [["A B",' "C',' D"']] instead of [["A B",' C',' D']].
"A B", "C, D"
[["A B",' "C',' D"']]
[["A B",' C',' D']]
Fixes issue #70.
If inside an unquoted string, text-delimiters are ignored instead of swallowed. This (partially?) fixes issue #70. Example:
"A B", "C, D"
will now produce[["A B",' "C',' D"']]
instead of[["A B",' C',' D']]
.