On Thu, Feb 5, 2009 at 1:28 AM, Andrey Somov <py4fun@...> wrote:
> =============================
> Announcing InstantYAML
> =============================
> InstantYAML is a service to check the validity of a YAML document,
> to evaluate different options for emitting and to see implementation
> information generated by PyYAML 3.08 (events, tokens and nodes).
> The service is available here:
> http://instantyaml.appspot.com/
> Your feedback is welcome !
> Copyright
It looks nice!
One concern that I have is how the service perceives "Canonical
content" when handling characters above 128. For example:
English: Over
German: Über
Becomes:
%YAML 1.1
---
!!map {
? !!str "English"
: !!str "Over",
? !!str "German"
: !!str "\xDCber",
}
...
Yes, it's a different way of presenting the same thing. But if I was
pressing the "Show Canonical YAML" button, I would expect:
%YAML 1.1
---
!!map {
? !!str "English"
: !!str "Over",
? !!str "German"
: !!str "Über",
}
...
Best regards,
Peter
|