We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
The library has a hard time parsing IP addresses as strings, and it parses them as numbers. For example the following YAML value:
host: 127.0.0.1
is being parsed as:
{ host = 127 }
While it should be interpreted as a string value, not an integer value. It should be:
{ host = "127.0.0.1" }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The library has a hard time parsing IP addresses as strings, and it parses them as numbers. For example the following YAML value:
is being parsed as:
While it should be interpreted as a string value, not an integer value. It should be:
The text was updated successfully, but these errors were encountered: