Skip to content
#

yml

yaml logo

YAML is a human friendly data serialization standard for all programming languages. YAML is a recursive acronym which stands for "YAML Ain't Markup Language". It is commonly used for configurations.

Here are 590 public repositories matching this topic...

groundnuty
groundnuty commented Aug 27, 2021

What steps did you take:

Input:

#@ def group_alpha():
name: alpha
#@ end
groups: &all_groups
  - #@ group_alpha()
foo:
  groups: *all_groups

Result:

groups:
- null
foo:
  groups:
  - name: alpha

Expected:

groups:
- alpha
foo:
  groups:
  - name: alpha

Expected according to [limitations](https://carvel.dev/ytt/docs/latest/known-limitat

good first issue documentation priority/unprioritized-backlog

Released May 11, 2001

Organization
yaml
Website
yaml.org
Wikipedia
Wikipedia