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
The quotes and = are removed around the following interpolated string on format:
%span= "- #{foo}"
becomes
%span - #{foo}
This causes invalid syntax and the prettier-ruby plugin then stalls and fails to complete file formatting.
This is using the latest version (4.0.1)
It works if the content is placed on a newline:
%span = "- #{foo}"
The text was updated successfully, but these errors were encountered:
This is by design, taking advantage of their interpolation. See https://haml.info/docs/yardoc/file.REFERENCE.html#ruby-interpolation-. Is it still hanging for you or was that an inline comment like the other issue?
Also thank you very much for the issue reports! I really appreciate the help.
Sorry, something went wrong.
Ah OK thank you!
Inline comment no longer hangs - fixed after updating prettier_print as suggested
prettier_print
No branches or pull requests
The quotes and
=
are removed around the following interpolated string on format:%span= "- #{foo}"
becomes
%span - #{foo}
This causes invalid syntax and the prettier-ruby plugin then stalls and fails to complete file formatting.
This is using the latest version (4.0.1)
It works if the content is placed on a newline:
The text was updated successfully, but these errors were encountered: