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
(originally reported by @nex3 as haml/haml#216)
For example,
<%= foo :bar, :baz %>
gets multiline pipes added. This is no longer necessary.
The text was updated successfully, but these errors were encountered:
I also hope to get rid of multiline pipe.
index.html.erb
<%= link_to "root", root_path %> <%= link_to "root", root_path %>
> html2haml index.html.erb
index.html.haml
= link_to "root", | root_path | = link_to "root", | root_path |
This haml raises ActionView :: SyntaxErrorInTemplate. Because the multiline pipe continues to the next element.
ActionView :: SyntaxErrorInTemplate
Sorry, something went wrong.
No branches or pull requests
(originally reported by @nex3 as haml/haml#216)
For example,
gets multiline pipes added. This is no longer necessary.
The text was updated successfully, but these errors were encountered: