How can I reference a YAML “setting” from elsewhere in the same YAML file?
I don’t think it is possible. You can reuse “node” but not part of it. bill-to: &id001 given : Chris family : Dumars ship-to: *id001 This is perfectly valid YAML and fields given and family are reused in ship-to block. You can reuse a scalar node the same way but there’s no way you can … Read more