You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If one specifies that something should be a string, please encode it in the most natural and deterministic way.
Example for something desired to be formatted as a list of strings please ensure that all form of canonical integer and floating point numbers are encoded as strings.
As valid representations of numbers, which upon parsing will not be strings. And thus need to be quoted to be strings.
For the purpose of melange, we can encounter something like "1.23015e+3" as a string value represetting package version or text git tag. But most commonly it is software with single major or single minor version only that can get miss-parsed.
The text was updated successfully, but these errors were encountered:
I'm not sure I'm following what this issue is asking for yet... Are you saying that yam is mishandling YAML tags then they're specified? Are you saying that yam should define its own default behavior for when no tag is present in the input?
An example input and expected output would go a long way here! Thanks!
If one specifies that something should be a string, please encode it in the most natural and deterministic way.
Example for something desired to be formatted as a list of strings please ensure that all form of canonical integer and floating point numbers are encoded as strings.
https://yaml.org/spec/1.2.2/#24-tags
Lists
As valid representations of numbers, which upon parsing will not be strings. And thus need to be quoted to be strings.
For the purpose of melange, we can encounter something like "1.23015e+3" as a string value represetting package version or text git tag. But most commonly it is software with single major or single minor version only that can get miss-parsed.
The text was updated successfully, but these errors were encountered: