The stupid question is the question not asked | |
PerlMonks |
Re: YAML module issueby ingy (Initiate) |
on May 13, 2006 at 07:06 UTC ( [id://549193]=note: print w/replies, xml ) | Need Help?? |
Well it's like this. In YAML, every document has a "schema" which determines exactly what type or tag every node in the document has. For two applications to share a document, they need to agree on a "schema". I quote "schema" because it isn't really a tangible thing like XML schema language. In YAML, there is not yet an official schema language. A YAML schema can come in one of the following forms:
YAML.pm's strategy is to load all unquoted scalars as strings except for ~ which becomes undef. If you want to use YAML.pm with other yaml processors you need to agree on a schema, which really means you need to find out what they do and make sure everything is in sync for your needs. Cheers, Ingy
In Section
Seekers of Perl Wisdom
|
|