Skip to content
This repository has been archived by the owner on Nov 16, 2022. It is now read-only.

v1.0.1

Latest
Compare
Choose a tag to compare
@mubaraqwahab mubaraqwahab released this 03 Nov 12:59
· 2 commits to master since this release

No newlines between opening and closing tags of empty HTML elements.

Example input:

<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true"></div>

Output in v1.0.0:

<div
  class="modal fade"
  id="exampleModal"
  tabindex="-1"
  role="dialog"
  aria-labelledby="exampleModalLabel"
  aria-hidden="true"
>

</div>

Output now:

<div
  class="modal fade"
  id="exampleModal"
  tabindex="-1"
  role="dialog"
  aria-labelledby="exampleModalLabel"
  aria-hidden="true"
></div>