threedaymonk / htmlbeautifier

A normaliser/beautifier for HTML that also understands embedded Ruby. Ideal for tidying up Rails templates.
MIT License
325 stars 59 forks source link

Indent case statements #75

Closed tomclose closed 4 months ago

tomclose commented 1 year ago

Before this PR:

<div>
  <% case @x %>
  <% when :a %>
  a
  <% when :b %>
  b
<% else %>
  c
<% end %>
</div>

After this PR:

<div>
  <% case @x %>
  <% when :a %>
    a
  <% when :b %>
    b
  <% else %>
    c
  <% end %>
</div>
vassyz commented 4 months ago

Is it possible to merge this PR?

threedaymonk commented 4 months ago

I've manually merged this. Thanks!

threedaymonk commented 4 months ago

Released in version 1.4.3