Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 531 Bytes

File metadata and controls

19 lines (12 loc) · 531 Bytes

Intellij Plugin source for the HTML Attribute wrapper plugin

Put every attribute of a HTML tag on a new line.

This:

<input type="text" id="name" name="name" class="form-control">

Will become this:

<input
    type="text"
    id="name"
    name="name"
    class="form-control">

See preferences > tools > Wrap HTML Plugin for setting the formatting to you preference.

The plugin on JetBrains Plugin Repository: https://plugins.jetbrains.com/plugin/12766-wrap-html-attributes-on-new-lines/