Socket
Socket
Sign inDemoInstall

posthtml-urls

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

posthtml-urls

PostHTML plugin for transforming URLs.


Version published
Weekly downloads
30K
decreased by-28.95%
Maintainers
1
Weekly downloads
 
Created
Source

posthtml-urls NPM Version Build Status Dependency Status

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 = require('posthtml');
const urls = require('posthtml-urls');

const options = {
  eachURL: function(url, attr, element) {
    return `http://domain.com/${url}`;
  }	
};

posthtml()
.use( urls(options) )
.process('<a href="link.html">link</a>')
.then(result => console.log(result.html));

//-> <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

  1. How can I filter <style> elements and style attributes?
    Use posthtml-postcss and postcss-url.

Keywords

FAQs

Package last updated on 27 Jan 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc