I have the following entry in the erb template:
# Lorem Ipsum... <% unless @foo['bar'] == nil %> <% @foo['bar'].each do |property, value| %> <%= "zaz.#{property} #{value}" %> <% end %> <% end %>
This is a parsing:
How to remove leading spaces so that lines are not indented in the allowed pattern?
I would like to avoid using something like:
# Lorem Ipsum... <% unless @foo['bar'] == nil %> <% @foo['bar'].each do |property, value| %> <%= "zaz.#{property} #{value}" %> <% end %> <% end %>
source share