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
Example code:
block "block_name" { a = "line1\nline2" }
Expected output:
{'block': [{'block_name': {'a': 'line1\nline2', '__start_line__': 1, '__end_line__': 3}}]}
Actual output (note the extra backslash):
{'block': [{'block_name': {'a': 'line1\\nline2', '__start_line__': 1, '__end_line__': 3}}]}
I plan to fix this in a future PR, just creating this issue for tracking purposes.
The text was updated successfully, but these errors were encountered:
Properly handle escapes within HCL strings (closes amplify-education#171
65c95bf
)
77cfaa6
373aa78
Successfully merging a pull request may close this issue.
Example code:
Expected output:
Actual output (note the extra backslash):
I plan to fix this in a future PR, just creating this issue for tracking purposes.
The text was updated successfully, but these errors were encountered: