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
Hello!
I noticed, that when using this tool for YAML, tagged values are converted to null, which is something I would not expect.
null
> cat asdf.yml some: value a: !tagged value > yq asdf.yml some: value a: !tagged value > qq asdf.yml { "a": null, "some": "value" }
Not sure, what solution would be the best, but I think returning null is not intended.
Ways to address this:
tag
value
QQ_YAML_TAGGED(<TAG>):<VALUE>
The text was updated successfully, but these errors were encountered:
JFryy
No branches or pull requests
Hello!
I noticed, that when using this tool for YAML, tagged values are converted to
null
, which is something I would not expect.Not sure, what solution would be the best, but I think returning
null
is not intended.Ways to address this:
tag
andvalue
.QQ_YAML_TAGGED(<TAG>):<VALUE>
The text was updated successfully, but these errors were encountered: