Dehamlizing

Change this piece of HAML code back into erb

Input

%tr
  %td= raw("<%= line1_hello %>")
  %td= raw("<%= line2(world) %>")
  %td= raw("<%= line3_hello %>")
  %td= raw("<%= line4 %>")
  %td= raw("<%= line5_(world) %>")

Output


  <%= line1_hello %>
  <%= line2(world) %>
  <%= line3_hello %>
  <%= line4 %>
  <%= line5_(world) %>