Brion Vibber schreef:
According to the Wikipedia article on YAML, you can quote or explicitly typecast the value to ensure it will be decoded as a string:
"3" !!str 3
That's true. The following is also possible (and is used for strings with weird characters):
foo: | 3
So I'll go and implement that.
Roan Kattouw (Catrope)