NimYAML icon indicating copy to clipboard operation
NimYAML copied to clipboard

YAML implementation for Nim

Results 12 NimYAML issues
Sort by recently updated
recently updated
newest added

Hi @flyx, thank you so much for your unflinching support! If I define an anchor in a scope that is ignored by NimYAML, it won't be recognized. Non-working example: ```nim...

type PathDocument = ref object `$ref` {.defaultVal: none(string).}: Option[string] others {.defaultVal: none(string).}: Option[string] Hello. First of all, Thank you for your awesome package! While I am using NimYAML, I observed...

Would it be possible to add a simple example how to load data from a yaml file? I don't understand the advanced examples in nim yet. I am familiar with...

When using the last tag (v0.16) or the cloned repo, I get this warning with Nim 1.6.6 ``` yaml/dom.nim(195, 3) Warning: Cannot prove that 'result' is initialized. This will become...

Happy New Year, my friend! Here's a small gift for you ;) * `4EJS` [Suite](https://github.com/yaml/yaml-test-suite/blob/main/src/4EJS.yaml) [Play](https://play.yaml.io/main/parser?input=LS0tCmE6CgliOgoJCWM6IHZhbHVlCg==) * `9JBA` [Suite](https://github.com/yaml/yaml-test-suite/blob/main/src/9JBA.yaml) [Play](https://play.yaml.io/main/parser?input=LS0tClsgYSwgYiwgYywgXSNpbnZhbGlkCg==) * `9MAG` [Suite](https://github.com/yaml/yaml-test-suite/blob/main/src/9MAG.yaml) [Play](https://play.yaml.io/main/parser?input=LS0tClsgLCBhLCBiLCBjIF0K) * `CTN5` [Suite](https://github.com/yaml/yaml-test-suite/blob/main/src/CTN5.yaml) [Play](https://play.yaml.io/main/parser?input=LS0tClsgYSwgYiwgYywgLCBdCg==) * `CVW2`...

I ran into this bug. I think it may be a bug in the compiler, but I wanted to check with you first. Have you seen this before? Any clue?...

## example 1: works at RT(?), fails at CT wrote works at RT with a `?` because I'm not sure whether the output (`A,` ) is correct or not. ```nim...

after applying the patch from https://github.com/flyx/NimYAML/issues/69#issuecomment-502444945 to make it work with latest nim 0.20 (which does work!), I'm trying to make it work at compile time; currently it gives compiler...

Nim's JavaScript backend is currently not supported because it doesn't support first-class iterators. Since it is unlikely that this will change in the near future, to support the backend, `fastparse.nim`...

enhancement

This mainly boils down to „properly generate tags for custom generic types“. So that, for example, `Container[Container[string]]` gets a tag `!nim:custom:Container(nim:custom:Container(tag:yaml.org,2002:string))`. Currently blocked by nim-lang/Nim#4832