YAML.jl icon indicating copy to clipboard operation
YAML.jl copied to clipboard

Parse yer YAMLs

Results 75 YAML.jl issues
Sort by recently updated
recently updated
newest added

The following code hangs and continues to consume more memory until you manually kill it. ```julia YAML.load("a: \"b\"\"") ``` Note the trailing `"` after `"b"`. ![image](https://github.com/JuliaData/YAML.jl/assets/6144086/728d2774-ac6d-4d28-b4eb-ca9ab0b3311a) with package versions on...

bug
parser

Although using this package is pretty straightforward, I can't help but notice the general lack of documentation in the package: aside from the lack of a Documenter.jl integration, there is...

For 2d arrays, the YAML.write_file() function writes a string version of the julia data which is parsed wrongly when read back by the load_file function. ## Specs Package version: YAML...

bug

I've been looking into this package a bit, looking through pull requests and issues. And, something that seems to be key to me is which version of YAML this is...

question
API

I use yaml files to store my simulation parameters and I am commenting every line. Sometimes I need to change values from a software and not manually. Then the comments...

enhancement
question

Just a way to manage it, probably exists a better way. With tests

question

Given a YAML file like: ``` --- creator: LAMMPS timestep: 0 ... --- creator: LAMMPS timestep: 1 ... ``` the following code: ```julia julia> import YAML julia> for fs in...

bug

Adds timezones for DateTime parsing! This is accomplished through the use of the TimeZones.jl package. The tests in [test/spec-02-22.expected](https://github.com/JuliaData/YAML.jl/compare/master...ThatcherC:YAML.jl:timezones?expand=1#diff-361e779d45c10fe6c257e2fcd4f455017745130478c14daf589d09b2e7009113) had to be updated to output `ZonedDateTime` objects instead of `DateTime`...

enhancement

I am wondering if there is an issue in the way YAML.jl parses a list of an empty list because loading the file I save returns an error: ``` using...

bug

Given the yaml file: ``` # Test ``` The following code crashes: ``` using YAML open("test.yaml", "r") do io YAML.load(io) end ``` With the error: ``` ERROR: AssertionError: typeof(forward!(composer.input)) ==...

bug