rehype-minify-url
Minify URLs. Uses relateurl
. from
in options is required (which must be an absolute url to where the file is hosted. All other options are passed through.
Install
npm:
npm install rehype-minify-url
Use
On the API:
unified()
.use(require('rehype-parse'))
+ .use(require('rehype-minify-url'))
.use(require('rehype-stringify'))
.process('<span>some html</span>', function (err, file) {
console.error(report(err || file))
console.log(String(file))
})
On the CLI:
rehype input.html --use minify-url > output.html
Example
With { from: 'https://example.com' }
as options.
In
<a href="/foo/../bar.html"></a>
Out
<a href="bar.html"></a>
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.