Can not read multi byte characters
Brought to you by:
nates
YamlReader fails to read strings including multi byte characters. The error message is as follows;
Found non-printable character at 48: ?
I think Tokenizer.NON_PRINTABLE pattern should be like this:
[^\u0009\n\r\u0020-\u007E\u0085\u00A0-\uffff]
This looks working correctly for me.