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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Library doesn't parse multi-line variable values properly.
Input:
URLS="foo bar"
Expected:
map[string]string{ "URLS": "foo\nbar", }
Got:
map[string]string{ "URLS": "foo", "bar", }
The text was updated successfully, but these errors were encountered:
@joho I'm already working on fix, but this requires a major rewrite of parser implementation
Sorry, something went wrong.
@joho added PR with issue fix - #118.
Please take a look
Duplicate of #64
Successfully merging a pull request may close this issue.
Library doesn't parse multi-line variable values properly.
Input:
Expected:
Got:
The text was updated successfully, but these errors were encountered: