Open
Description
Using the following dhall, dhall-to-yaml
does not render correctly:
{ 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 < 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.