dart-sdk/pkg/yaml
2013-03-08 13:07:18 +00:00
..
lib Remove deprecated StringBuffer.add, addAll and addCharCode. 2013-03-08 13:07:18 +00:00
test Remove deprecated Strings class. 2013-02-19 13:57:03 +00:00
pubspec.yaml Restructure YAML package suitable for pub lish 2013-01-26 02:25:43 +00:00
README.md Restructure YAML package suitable for pub lish 2013-01-26 02:25:43 +00:00

A parser for YAML.

Use loadYaml to load a single document, or loadYamlStream to load a stream of documents. For example:

import 'package:yaml/yaml.dart';
main() {
  var doc = loadYaml("YAML: YAML Ain't Markup Language");
  print(doc['YAML']);
}

This library currently doesn't support dumping to YAML. You should use stringify from dart:json instead:

import 'dart:json' as json;
import 'package:yaml/yaml.dart';
main() {
  var doc = loadYaml("YAML: YAML Ain't Markup Language");
  print(json.stringify(doc));
}

The source code for this package is at http://code.google.com/p/dart. Please file issues at http://dartbug.com. Other questions or comments can be directed to the Dart mailing list at mailto:misc@dartlang.org.