Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Just getting up to speed with YAML and want to confirm whether it's possible to utilise its anchor (&) and reference (*) functionality across separate files or separate documents within one file. For example, for the latter:

--- # Document A
Lunch: &lunch01     # Already thinking of lunch ;-)
    - BBQ Chicken
    - Sirloin Steak
    - Roast Beef
    - Salmon
...

--- # Document B
Monday:    *lunch01
Tuesday:   closed
Wednesday: *lunch01
Thursday:  closed
Friday:    *lunch01
...

(Apologies if my syntax is incorrect, still trying to convert across from thinking in terms of arrays and dictionaries.)

Does this work? Or would I go about this by merging the data within my programming language of choice at run time?

share|improve this question

1 Answer

up vote 1 down vote accepted

I am not an expert on YAML, but from my experience, this doesn't work. I am using PyYAML, and the parser throws an error when reaching the reference, complaining about an "undefined alias".

So you will have to merge the data at runtime.

share|improve this answer
It appears that you're right, reading into this post backs it up somewhat. – user577537 Jun 18 '12 at 11:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.