Add support for escaped double quotes in sexp.
This commit is contained in:
@@ -60,6 +60,10 @@ impl<'s> TextWithProperties<'s> {
|
||||
out.push('\\');
|
||||
ParseState::Normal
|
||||
}
|
||||
(ParseState::Escape, '"') => {
|
||||
out.push('"');
|
||||
ParseState::Normal
|
||||
}
|
||||
_ => todo!(),
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user