$ gnpm install rehype-sort-attributes
Reorder attributes based on how often they occur.
This optimizes for repetition-based compression (such as GZip).
This package is ESM only:
Node 12+ is needed to use it and it must be imported
ed instead of required
d.
npm:
npm install rehype-sort-attributes
This package exports no identifiers.
The default export is rehypeSortAttributes
On the API:
import {unified} from 'unified'
import rehypeParse from 'rehype-parse'
+import rehypeSortAttributes from 'rehype-sort-attributes'
import rehypeStringify from 'rehype-stringify'
unified()
.use(rehypeParse)
+ .use(rehypeSortAttributes)
.use(rehypeStringify)
.process('<span>some html</span>', function (err, file) {
console.error(report(err || file))
console.log(String(file))
})
On the CLI:
rehype input.html --use sort-attributes --output output.html
<div id="foo"><strong class="bar" id="baz">qux</strong></div>
<div id="foo"><strong class="bar" id="baz">qux</strong></div>
See contributing.md
in rehypejs/.github
for ways
to get started.
See support.md
for ways to get help.
This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.
Copyright 2013 - present © cnpmjs.org | Home |