Fwd: [Yaml-core] Fwd: Hash style comments
# Andrea Giammarchi (13 years ago)
just in case, since mentioned here ...
WebReflection/JSONH#javascript-and-native-json-escape-problems
to make stringified JSON safer so that
JSONH.stringify(data).replace( /\u2028|\u2029/g, function (m) { return "\u202" + (m === "\u2028" ? "8" : "9"); })
From: Oren Ben-Kiki <oren at ben-kiki.org>
Date: Thu, Aug 9, 2012 at 3:21 AM Subject: Re: [Yaml-core] Fwd: Hash style comments To: Trans <transfire at gmail.com>
Cc: Yaml-core <yaml-core at lists.sourceforge.net>
YAML doesn't do any special treatment of characters above 0xFF; it assumes all valid Unicode code points above 0xFF are non-break-non-white "printable" characters and allows them to be used most anywhere.
We used to treat NEL, LS, PS as line breaks but we gave it up to maintain JSON compatibility. We are OK as long as YAML is a superset of JSON, which seems to be the case.
Oren.