ruby-formatter/rufo

<%== %> syntax not supported

gingermusketeer opened this issue · 2 comments

Rails supports <%== "test" %> which translates to <%= raw("test") %>.

This might be a similar issue, but the parser chokes on

<%= pager_wrap do -%>
  <li class="next"><%= link_to t('links.new'), new_role_path %></li>
<% end %>

Notice the -%>. Removing the - solves the problem.

Ah yes. Can tackle both of these together.