{ "ハルカナホシノセカイへ": "https://www.youtube.com/watch?v=pwl1nISaCNg" }
Simply put, is it yet possible to use non-ascii e.g. CJK characters in the labels of Dhall records? Like, to translate the json record above?
I tried json-to-dhall
which put backticks surrounding the label:
$ json-to-dhall <<< '{ "ハルカナホシノセカイへ": "https://www.youtube.com/watch?v=pwl1nISaCNg" }'
{ `ハルカナホシノセカイへ` = "https://www.youtube.com/watch?v=pwl1nISaCNg" }
Well, it seems like even Dhall itself does not like them:
$ dhall-to-json <<< '{ `ハルカナホシノセカイへ` = "https://www.youtube.com/watch?v=pwl1nISaCNg" }'
Error: Invalid input
(input):1:3:
|
1 | { `ハルカナホシノセカイへ` = "https://www.youtube.com/watch?v=pwl1nISaCNg" }
| ^
unexpected '`'
expecting ',', =, whitespace, or }