We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This code
import 'package:yaml_writer/yaml_writer.dart'; void main() { const input = [{'a': {'b': 1}}]; final writer = YAMLWriter(); print(writer.write(input).replaceAll('\n', '_')); }
produces:
- _ a: _ b: 1__
Note the double newline at the end while a single newline was expected.
The text was updated successfully, but these errors were encountered:
c713cdc
No branches or pull requests
This code
produces:
Note the double newline at the end while a single newline was expected.
The text was updated successfully, but these errors were encountered: