YAML (YAML Ain't Markup Language) is a human-readable data serialization language. Its syntax is simple and human-readable. It does not contain quotation marks, opening and closing tags, or braces. It does not contain anything which might make it harder for humans to parse nesting rules. You can scan your YAML document and immediately know what's going on.
YAML features
YAML has some super features which make it superior to other serialization formats:
- Easy to skim.
- Easy to use.
- Portable between programming languages.
- Native data structures of Agile languages.
- Consistent model to support generic tools.
- Supports one-pass processing.
- Expressive and extensible.
I will show you YAML's power further with some examples.
Can you figure out what's going on below?
-------
# My grocery list
groceries:
- Milk
- Eggs
- Bread
- Butter
...
The above example contains a simple list of groceries to buy, and it's a fully-formed YAML document. In YAML, strings aren't quoted, and lists need simple hyphens and spaces. A YAML document starts with --- and ends with ..., but they are optional. Comments in YAML begin with a #.
Indentation is key in YAML. Indentation must contain spaces, not tabs. And while the number of spaces required is flexible, it's a good idea to keep them consistent.
Basic Elements
Collections
YAML has two types of collections: Lists (for sequences) and dictionaries (for mappings). Lists are key-value pairs where every value is on a new line, beginning with a hyphen and space. Dictionaries are key-value pairs where every value is a mapping containing a key, a colon and space, and a value.
For example:
# My List
groceries:
- Milk
- Eggs
- Bread
- Butter
# My dictionary
contact:
name: Ayush Sharma
email: myemail@example.com
Lists and dictionaries are often combined to provide more complex data structures. Lists can contain dictionaries, and dictionaries can contain lists.
Strings
Strings in YAML don't need quotation marks. Multi-line strings are defined using | or >. The former preserves newlines, but the latter does not.
For example:
my_string: |
This is my string.
It can contain many lines.
Newlines are preserved.
my_string_2: >
This is my string.
This can also contain many lines.
Newlines aren't preserved and all lines are folded.
Anchors
YAML can have repeatable blocks of data using node anchors. The & character defines a block of data that is later referenced using *. For example:
billing_address: &add1
house: B1
street: My Street
shipping_address: *add1
At this point, you know enough YAML to get started. You can play around with the online YAML parser to test yourself. If you work with YAML daily, then this handy cheatsheet will be helpful.
This article was originally published on the author's personal blog and has been adapted with permission.
Comments are closed.