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
Currently all keys are just converted to strings and printed, (except for nothing)
nothing
This assumes that keys don't have any problematic characters for example " #" and are shorter than 1024 Unicode characters.
YAML.jl/src/writer.jl
Lines 67 to 74 in 6683ecf
I think there should be some function to check if a key is a valid implicit key in plain style, otherwise it should be in double quoted style.
Here is an example that errors.
YAML.load(YAML.yaml(Dict(["#a"=>"b"])))
The text was updated successfully, but these errors were encountered:
Partially fixed by #237
Sorry, something went wrong.
No branches or pull requests
Currently all keys are just converted to strings and printed, (except for
nothing
)This assumes that keys don't have any problematic characters for example " #" and are shorter than 1024 Unicode characters.
YAML.jl/src/writer.jl
Lines 67 to 74 in 6683ecf
I think there should be some function to check if a key is a valid implicit key in plain style, otherwise it should be in double quoted style.
Here is an example that errors.
The text was updated successfully, but these errors were encountered: