Add support for escaped double quotes in sexp.

This commit is contained in:
Tom Alexander
2023-08-14 16:54:40 -04:00
parent df3045e424
commit b93a12c32c
2 changed files with 6 additions and 2 deletions

View File

@@ -60,6 +60,10 @@ impl<'s> TextWithProperties<'s> {
out.push('\\');
ParseState::Normal
}
(ParseState::Escape, '"') => {
out.push('"');
ParseState::Normal
}
_ => todo!(),
};
}