rehype-sort-attribute-values
Sort attribute values
Last updated 8 years ago by wooorm .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ gnpm install rehype-sort-attribute-values 
SYNC missed versions from official npm registry.

rehype-sort-attribute-values

Build Coverage Downloads Size Sponsors Backers Chat

Sort attribute values.

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-attribute-values

This package exports no identifiers. The default export is rehypeSortAttributeValues

Use

On the API:

 import {unified} from 'unified'
 import rehypeParse from 'rehype-parse'
+import rehypeSortAttributeValues from 'rehype-sort-attribute-values'
 import rehypeStringify from 'rehype-stringify'

 unified()
   .use(rehypeParse)
+  .use(rehypeSortAttributeValues)
   .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-attribute-values --output output.html

Example

In
<div class="qux quux foo bar"></div>
Out
<div class="bar foo quux qux"></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                                ...           5 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                                ...           8 years ago
  • 1.0.0                                ...           8 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 8
Last Day 0
Last Week 8
Last Month 0
Dependencies (4)
Dev Dependencies (0)
None
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |