Skip to content

Instantly share code, notes, and snippets.

@pandorasNox
Created April 12, 2023 11:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pandorasNox/68cdee6abaaf5039a9d545ced384dac1 to your computer and use it in GitHub Desktop.
Save pandorasNox/68cdee6abaaf5039a9d545ced384dac1 to your computer and use it in GitHub Desktop.
yaml

yaml syntax hints

# using yaml alias - referencing a single value
test: &ref "foobar"
bar: *ref

# works also with bigger objects
bob: &bob
  isPerson: true
bob2: *bob

# or
bob: &bob {
  isPerson: true
}
bob2: *bob
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment