rehype-sort-attributes
rehype plugin to reorder attributes based on how often they occur
Last updated 5 years ago by wooorm .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ gnpm install rehype-sort-attributes 
SYNC missed versions from official npm registry.

rehype-sort-attributes

Build Coverage Downloads Size Sponsors Backers Chat

Reorder attributes based on how often they occur.

This optimizes for repetition-based compression (such as GZip).

Install

This package is ESM only: Node 12+ is needed to use it and it must be importeded instead of requiredd.

npm:

npm install rehype-sort-attributes

This package exports no identifiers. The default export is rehypeSortAttributes

Use

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

Example

In
<div id="foo"><strong class="bar" id="baz">qux</strong></div>
Out
<div id="foo"><strong class="bar" id="baz">qux</strong></div>

Contribute

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.

License

MIT © Titus Wormer

Current Tags

  • 4.0.0                                ...           latest (3 years ago)

8 Versions

  • 4.0.0                                ...           3 years ago
  • 3.0.2                                ...           4 years ago
  • 3.0.1                                ...           5 years ago
  • 3.0.0                                ...           5 years ago
  • 2.0.1                                ...           6 years ago
  • 2.0.0                                ...           6 years ago
  • 1.0.1                                ...           7 years ago
  • 1.0.0                                ...           8 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (1)
Dev Dependencies (0)
None
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |