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
Using 0.1.1:
@ YamlConverter.toYamlString(parse(""" { a = "\n" } """).normalize()) res15: String = """a: \n """ @ JsonConverter.toCompactString(parse(""" { a = "\n" } """).normalize()) res16: String = "{\"a\":\"\\n\"}"
THe JSON output is correct, but in the YAML output, the value does not contain a newline (without quotes, \n is not an escape sequence).
The text was updated successfully, but these errors were encountered:
Thanks, taking a look now!
Sorry, something went wrong.
I really need to just go ahead and address #11 properly. Sorry you're running into these issues—thanks for reporting them.
Successfully merging a pull request may close this issue.
Using 0.1.1:
THe JSON output is correct, but in the YAML output, the value does not contain a newline (without quotes, \n is not an escape sequence).
The text was updated successfully, but these errors were encountered: