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
v0.9.5 - Fixes formatting of ruby comment in ERB-tag (#45)
Example:
```erb
<% # this is a comment %>
```
Output:
```diff
-<%
-
- # this is a comment
-%>
+<% # this is a comment %>
```
0.9.4: Format empty HTML-tags as a group (#43)
```diff
<three-word-component
:attribute1
:attribute2
:attribute3="value"
->
-</three-word-component>
+></three-word-component>
```