posthtml-urls
PostHTML plugin for transforming URLs.
Installation
Node.js >= 4
is required. To install, type this at the command line:
npm install posthtml-urls
Usage
const posthtml = ;const urls = ; const options = { return `http://domain.com/`; } ; ; //-> <a href="http://domain.com/link.html">link</a>
Options
options.eachURL
Type: Function
Default value: undefined
A callback function ran for each URL value found. You can return either a synchronous value or a Promise
.
options.filter
Type: Object
Default value: …
The elements and attributes for which to search. An attribute value can optionally be a function, for deeper filtering.
FAQ
- How can I filter
<style>
elements andstyle
attributes?
Use posthtml-postcss and postcss-url.