pub fn parse_yaml_documents(input: &str) -> Vec<YamlDocument>Expand description
Parse input and return every YAML document in the stream. Most consumers
only need the first (parse_yaml_document); this exists for multi-document
completeness (a: 1\n---\nb: 2).