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
Using
$ jsonnet --version Jsonnet commandline interpreter (Go implementation) v0.20.0
with following expression:
"1" {} // or ["1" {}]
expecting syntax error, comma expected, but got
"1{ }" // or [ "1{ }" ]
Works in playground too.
Found while generated xml from incorrect input that was like
["article" {id: "main", class: "markdown-section", role: "main", tabindex: "-1"}, "text"]
which was handled incorrectly before xml-transform to
[ "article{\"class\": \"markdown-section\", \"id\": \"main\", \"role\": \"main\", \"tabindex\": \"-1\"}", "text" ]
while expected
[ "article", { "class": "markdown-section", "id": "main", "role": "main", "tabindex": "-1" }, "text" ]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using
with following expression:
expecting syntax error, comma expected, but got
Works in playground too.
Found while generated xml from incorrect input that was like
which was handled incorrectly before xml-transform to
while expected
The text was updated successfully, but these errors were encountered: