Questions tagged [yaml]

YAML is a human-readable data serialization format.

YAML is a language designed to be:

  • easily readable by humans.
  • data is portable between programming languages.
  • matches the native data structures of agile languages.
  • has a consistent model to support generic tools.
  • supports one-pass processing.
  • is expressive and extensible.
  • is easy to implement and use.

YAML is a superset of JSON and adopts an indent-sensitive syntax.

7 questions
1
vote
1 answer

How to represent a (key,value) tree structure in YAML?

I would like to represent tree structures in YAML. Each node of the tree is composed of a (key,value) pair. The key must be a string. A structure like this would be perfect: node1: child_A: child_AA: child_AB: 1.2 …
Bérenger
  • 131