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
Describe the bug
After the crossplane parse, I expect all arguments to be unescaped.
https://github.com/nginxinc/crossplane/blob/v0.5.7/tests/test_parse.py#L946 Here, arg1 is escaped, but arg2 is unescaped, where the data format is not uniform. My program is confused when dealing with the arguments of the directive and doesn't know when it should be manually unescape.
Expected behavior
'args': ['#arg 1', '#arg 2']
The text was updated successfully, but these errors were encountered:
https://github.com/faceair/nginx-parser/blob/171aa974ea5218140032e13872840359a1033162/parser_test.go#L84 I wrote a parser myself to solve this problem.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
After the crossplane parse, I expect all arguments to be unescaped.
https://github.com/nginxinc/crossplane/blob/v0.5.7/tests/test_parse.py#L946
Here, arg1 is escaped, but arg2 is unescaped, where the data format is not uniform. My program is confused when dealing with the arguments of the directive and doesn't know when it should be manually unescape.
Expected behavior
The text was updated successfully, but these errors were encountered: