0 purchases
yaml writer
yaml_writer #
A library to write YAML documents, supporting Object encoding and dart:convert Converter.
Usage #
A simple usage example:
import 'package:yaml_writer/yaml_writer.dart';
void main() {
var yamlWriter = YAMLWriter();
var yamlDoc = yamlWriter.write({
'name': 'Joe',
'ids': [10, 20, 30],
'desc': 'This is\na multiline\ntext',
'enabled': true,
});
print(yamlDoc);
}
copied to clipboard
OUTPUT:
name: 'Joe'
ids:
- 10
- 20
- 30
desc: |-
This is
a multiline
text
enabled: true
copied to clipboard
YAML Strings #
The writer will try to encode strings using the best format depending on the text,
avoiding to escape " and using | for multiline texts.
Encoding Objects #
You can use YAMLWriter.toEncodable to convert an Object to an encodable version,
similar to what is done by dart:convert JsonEncoder.
If YAMLWriter.toEncodable is not set, it will try to call toJson().
Features and bugs #
Please file feature requests and bugs at the issue tracker.
Author #
Graciliano M. Passos: gmpassos@GitHub.
License #
Dart free & open-source license.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.