html-attrs-sorter-promisified
Promise-based API to sort html attributes.
How to install it?
$ npm install --save-dev html-attrs-sorter-promisified
Dependencies
How to use it?
First, things first:
var sorter = ;
Single input:
var htmlString = '<button id="1" disabled class="btn btn-primary" type="button">Search</button>'; sorter;// Outputs:// '<button class="btn btn-primary" id="1" type="button" disabled>Search</button>'
Two inputs:
var htmlString = '<button id="1" disabled class="btn btn-primary" type="button">Search</button>';var htmlString2 = '<button id="1" type="button" disabled class="btn btn-primary">Search</button>'; sorter;// Outputs:// '<button class="btn btn-primary" id="1" type="button" disabled>Search</button>'// '<button class="btn btn-primary" id="1" type="button" disabled>Search</button>'
N
inputs:
var htmlString = '<button id="1" disabled class="btn btn-primary" type="button">Search</button>';var htmlString2 = '<button id="1" type="button" disabled class="btn btn-primary">Search</button>';var htmlString3 = '<button id="1" type="button" class="btn btn-primary" disabled>Search</button>'; sorter;// Outputs:// '<button class="btn btn-primary" id="1" type="button" disabled>Search</button>'// '<button class="btn btn-primary" id="1" type="button" disabled>Search</button>'// '<button class="btn btn-primary" id="1" type="button" disabled>Search</button>'
Config order:
Since this module uses posthtml-attrs-sorter
under to hood, it inherits its default config object:
"order": "class" "id" "name" "data-.+" "ng-.+" "src" "for" "type" "href" "values" "title" "alt" "role" "aria-.+" "$unknown$"
It's very simple to override the order
configuration, though. Check the following example:
// Gives "id" and "type" a higher prioritysorter; var htmlString = '<button id="1" disabled class="btn btn-primary" type="button">Search</button>';sorter;// Outputs:// '<button id="1" type="button" class="btn btn-primary" disabled>Search</button>'// Instead of (default behaviour):// '<button class="btn btn-primary" id="1" type="button" disabled>Search</button>'