Last active
April 21, 2022 06:00
-
-
Save geerlingguy/51e2495131ef91e4059c6c47bd2d213b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# In YAML, this... | |
something: | |
- { name: test.example } | |
# ...is the same as this: | |
something: | |
- name: test.example | |
# And this: | |
something: | |
- { | |
name: test.example, | |
color: blue | |
} | |
- { | |
name: another.example, | |
color: yellow | |
} | |
# ...is the same as this: | |
something: | |
- name: test.example | |
color: blue | |
- name: another.example | |
color: yellow |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment