id	summary	reporter	owner	description	type	status	priority	component	severity	resolution	keywords	cc
206	Need ability to reuse and expand on defined lists and mappings.	philip@…	xi	"Every yaml file I've created requires some form of data reuse. YAML should support list and mapping expansions using existing anchor and reference syntax.

{{{
default_items: &default
- item one
- item two
- item three
my_items: *default
- additional item
}}}
{{{
default_items: &default
  one: two
  foo: bar
my_items: *default
  one: override
}}}

Having this ability would be valuable, and appears clean and logical in terms of the existing syntax. Submitting for consideration."	enhancement	new	normal	libyaml	normal		anchor reference expansion	
