PostHTML plugin for transforming URLs.
npm install posthtml-urlsNode.js >= 4 is required. To install, type this at the command line:
``shell`
npm install posthtml-urls
`js
const posthtml = require('posthtml');
const urls = require('posthtml-urls');
const options = {
eachURL: function(url, attr, element) {
return http://domain.com/${url};
}
};
posthtml()
.use( urls(options) )
.process('link')
.then(result => console.log(result.html));
//-> link
`
Default value: undefined
A callback function ran for each URL value found. You can return either a synchronous value or a Promise.$3
Type: Object
Default value: …
The elements and attributes for which to search. An attribute value can optionally be a function, for deeper filtering.
FAQ
1. How can I filter