You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to chapter 5 of the yaml specification I would expect the library to parse streams with non-C0 control characters inside quoted scalars. I encountered an Issue when parsing a stream containing the C1 control character "\x80". See playground.
The text was updated successfully, but these errors were encountered:
If control characters cannot be parsed correctly, can an option be provided for users to replace control characters with \uFFFD or other characters? This is to ensure that other content can be parsed correctly.
I have tried using replacement before deserialization, but I cannot guarantee that it will cover all unsupported cases by libraries.
According to chapter 5 of the yaml specification I would expect the library to parse streams with non-C0 control characters inside quoted scalars. I encountered an Issue when parsing a stream containing the C1 control character "\x80". See playground.
The text was updated successfully, but these errors were encountered: