blob: dbf86070bf9fc4235016a029bc4e01c6aff8e014 [file] [log] [blame] [view]
A parser for [YAML](https://yaml.org/).
[![Pub Package](https://img.shields.io/pub/v/yaml.svg)](https://pub.dev/packages/yaml)
[![Build Status](https://github.com/dart-lang/yaml/workflows/Dart%20CI/badge.svg)](https://github.com/dart-lang/yaml/actions?query=workflow%3A"Dart+CI"+branch%3Amaster)
Use `loadYaml` to load a single document, or `loadYamlStream` to load a
stream of documents. For example:
```dart
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
`json.encode` from `dart:convert` instead:
```dart
import 'dart:convert';
import 'package:yaml/yaml.dart';
main() {
var doc = loadYaml("YAML: YAML Ain't Markup Language");
print(json.encode(doc));
}
```