yaml_magic 1.0.6
yaml_magic: ^1.0.6 copied to clipboard
A Dart+Flutter package for manipulating YAML files, providing utilities to load, add, modify / edit, and save YAML documents.
1.0.6 #
- Add a possibility to remove the YamlMagic watermark comments using
noWatermarkComment
flag. - Enhanced YamlMagic parsing to preserve colors or values that start with
#
in content.
1.0.5 #
- Added getter for originalMap (without comments or break lines)
1.0.4+1 #
- Fix issue when casting to Map
1.0.4 #
-
Add retrieve comments support. When loading YAML content (using
YamlMagic.fromString
orYamlMagic.load
), the package YamlMagic now has the ability to retrieve comments from the YAML content. -
Add retrieve break lines support. When loading YAML content (using
YamlMagic.fromString
orYamlMagic.load
), the package YamlMagic now has the ability to retrieve break lines from the YAML content.
1.0.3+2 #
- Add support for multiline strings in YAML conversion. example:
description: |-
This is a multiline string.
It spans across multiple lines.
It can contain line breaks and indentation.
1.0.2 #
- Add
toString
method to get the output string without writing any yaml file (without callingsave
method).
1.0.1+2 #
- Make
YamlComment
indentLevel
property controlable.
1.0.1+1 #
- Update package pubspec.yaml description (it was too short) and the version to 1.0.1+1
1.0.1 #
- Added the ability to add comments to the YAML file using the addComment method in the YamlMagic class.
1.0.0 #
- Initial version.