Eo-yaml does not always escape asterisk while formattings yaml mapping object to string. The yaml example:
Jane:
- read
John:
- read
- write
Mark:
- "*"
This is expected yaml string, however * is not escaped while calling toString() method on YamlMapping object currently by eo-yaml and thus the string representation is not a valid yaml.
Eo-yaml does not always escape asterisk while formattings yaml mapping object to string. The yaml example:
This is expected yaml string, however
*is not escaped while callingtoString()method onYamlMappingobject currently by eo-yaml and thus the string representation is not a valid yaml.