You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure if this is actually solvable. Since the ERB is using <%= we expect to output the return value of the method call. If the ERB is just <% the output works as expected. Like:
<% something do %>
Content
<% end %>
Outputs:
something{plain" Content"}
The text was updated successfully, but these errors were encountered:
ERB Input:
Output:
Expected output:
@adamlogic experienced this in the GoRails Phlex episode: https://youtu.be/l4bQSfqZZfQ&t=1267
I'm not sure if this is actually solvable. Since the ERB is using
<%=
we expect to output the return value of the method call. If the ERB is just<%
the output works as expected. Like:Outputs:
The text was updated successfully, but these errors were encountered: