Is "renderPlain" in Salt.Data.Pretty used? I was testing round-trips and found a bug.
The string with two spaces (" " == [32,32]) has its second space eaten by the post-render munger. So if you have a string value (VText " ") and pretty-print it then parse it, you get a different result.
The eatSpace function looks easy enough to fix, but it doesn't look like anything is using renderPlain. Should I fix it or delete it?
Amos