YAML2
YAML2 copied to clipboard
An Effort to Revitalize the YAML Project and Community
Hi, thanks for working on a new YAML version! I would like to suggest using a different name than eYAML for https://github.com/yaml/YAML2/wiki/eYAML though, as it clashes with https://github.com/voxpupuli/hiera-eyaml . The...
Several wrapper libraries exist such as my https://github.com/nexB/saneyaml/ to ensure that YAML is usable safely and sanely as a readable data language for configuration files (e.g. instead of .ini/.toml) This...
strictyaml is an in-the-wild YAML parser based on `ruamel.yaml` (Python). They support a restricted subset of YAML, dropping elements including: implicit typing, binary data and explicit tags. Values default to...
In order to ensure a proper subset of JSON5, I don't think there is any choice but to also support `//` and `/* ... */` style comments. I really hate...
YAML already supports an internal link notation. ``` defaults: &defaults correspondence_address: street: '100 W Hubbard' city: 'New York' state: NY development:
YAML front matter has become a common design pattern for static site generation tools. An example of which looks like: ```yaml --- title: Some Title date: 2016-11-02 --- # Some...
My interest in YAML has grown recently, as I start using it for multiple purposes (deploying, configuring, transferring data, etc.), and I will just leave here a simple idea that...
I was looking at various implementations of YAML and one feature that stood out as not always having uniform behavior are complex mapping keys, e.g. ```yaml --- ? [1,2,3] :...
Thinking about simplification, perhaps a simplified variation of YAML could be made that lacks tags altogether, and then modify the current _serializable_ specification to handle tags as annotated comments. Example...