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
Loading data with newlines in single quotes doesn't behave according to the YAML specification. For example:
f = """ test: 'this is a single quoted string'""" YAML.load(f)
returns
Dict{Any, Any} with 1 entry: "test" => "this is a single quoted\nstring"
instead of
Dict{Any, Any} with 1 entry: "test" => "this is a single quoted string"
Version info:
Julia Version 1.9.1 Commit 147bdf428cd (2023-06-07 08:27 UTC) Platform Info: OS: macOS (x86_64-apple-darwin22.4.0) CPU: 10 × Apple M1 Pro WORD_SIZE: 64 LIBM: libopenlibm LLVM: libLLVM-14.0.6 (ORCJIT, westmere) Threads: 1 on 10 virtual cores
using YAML v0.4.12
The text was updated successfully, but these errors were encountered:
Additional YAML multiline info for reference: https://yaml-multiline.info/
Sorry, something went wrong.
No branches or pull requests
Loading data with newlines in single quotes doesn't behave according to the YAML specification. For example:
returns
instead of
Version info:
using YAML v0.4.12
The text was updated successfully, but these errors were encountered: