61c97e7325
After this I can use tools/publish_pkg.py upload script to fix dartbug.com/4126 Review URL: https://codereview.chromium.org//11622011 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@17685 260f80e4-7a28-3924-810f-c04153c831b5
25 lines
807 B
Markdown
25 lines
807 B
Markdown
A parser for [YAML](http://www.yaml.org/).
|
|
|
|
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>.
|