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 the following dhall, dhall-to-yaml does not render correctly:
dhall-to-yaml
{ a = [ "v:" ], b = "c:" }
$ dhall-to-yaml < t.dhall a: - v: b: c:
Both dhall-to-yaml-ng and dhall-to-json render it as expected:
dhall-to-yaml-ng
dhall-to-json
$ dhall-to-yaml-ng < t.dhall a: - "v:" b: "c:" $ dhall-to-json < t.dhall { "a": [ "v:" ], "b": "c:" }
Tested with dhall-to-yaml/dhall-to-json versions 1.7.4 and 1.7.6, and dhall-to-yaml-ng versions 1.2.4 and 1.2.6.
The text was updated successfully, but these errors were encountered:
While it escaped to me, at first, output from dhall-to-yaml and dhall-to-yaml-ng are both correct, but not identical:
In the given example, indentation for arrays differ, and double quotes are added in many more places (than just string values with trailing colons):
$ dhall-to-yaml <<< '{ a-a = [ "v-v"] }' a-a: - v-v $ dhall-to-yaml-ng <<< '{ a-a = [ "v-v"] }' "a-a": - "v-v"
Sorry, something went wrong.
Using the following dhall, dhall-to-yaml does not render correctly: { a = [ "v:" ], b = "c:" } $ dhall-to-yaml < t.dhall a: - v: b: c:
This is due to clovyr/aeson-yaml#12.
No branches or pull requests
Using the following dhall,
dhall-to-yaml
does not render correctly:$ dhall-to-yaml < t.dhall a: - v: b: c:
Both
dhall-to-yaml-ng
anddhall-to-json
render it as expected:Tested with
dhall-to-yaml
/dhall-to-json
versions 1.7.4 and 1.7.6, anddhall-to-yaml-ng
versions 1.2.4 and 1.2.6.The text was updated successfully, but these errors were encountered: