Hi @flyx! I'm using NimYAML to parse a config file. I want to use custom tags but can't figure out form the docs how to do it.
Here's a glimpse of what I want to be able to handle:
chapters:
- foo
- bar
- !remote http://example.com/somefile
When I load this content with `loadToJson` and iterate over `[0]["chapters"]`
the tag is ignored. I tried registering the tag URI but I don't know what to
with with the TagId I get from it.
Could you please help me with that?
