temporary fork of saphyr with serde support merged into main.
3ae23d47de
YAML 1.2 has special handling of indicators to be compatible with JSON. The following is equivalent to `{"a": "b"}` (note, no space after `:`): {"a":b} But without the quoted key, a space is required. So the `:` here is part of the plain scalar: {a:b} # == {"a:b"} A plain scalar can also start with a `:` as long as it's followed by "safe" characters: {a: :b} # == {"a": ":b"} (Fixes #118) |
||
---|---|---|
saphyr |