I also had a HECK of a time finding any documentation on that.
Good luck searching for those special characters!!!
If you want enlightenment, then, what I’m using is called YAML “anchor” format. Here is a doc I found with some information about it:
https://learnxinyminutes.com/docs/yaml/
Here is a snippet from that doc, which creates content that is then shared with other blocks. This is particularly handy when defining multiple jobs in a .circleci/config.yml file that all must use the same container environment.
# Anchors can be used to duplicate/inherit properties
base: &base
name: Everyone has same name
foo: &foo
<<: *base
age: 10
bar: &bar
<<: *base
age: 20