module YamlParser:A parser that will parse and compose YAML content.sig..end
type t
exception Error of string
YamlParser.error msg is raised when a problem occurs parsing
YAML content.val make : unit -> tYaml.make () creates a new parser.val parse_string : t -> string -> YamlNode.tYaml.parse_string s parses s as a single YAML document and
returns the document's root node.