Remove backslash from quoted strings

This commit is contained in:
Philipp Heckel 2022-04-27 13:56:21 -04:00
parent fb56ab9a06
commit adea3c38be
2 changed files with 3 additions and 3 deletions

View file

@ -251,7 +251,7 @@ func (p *actionParser) parseQuotedValue(quote rune) (value string, last bool, er
err = fmt.Errorf("unexpected end of input, quote started at position %d", start)
return
} else if r == quote && prev != '\\' {
value = p.input[start:p.pos]
value = strings.ReplaceAll(p.input[start:p.pos], "\\"+string(quote), string(quote)) // \" -> "
p.pos += w
// Advance until section end (after "," or ";")