Socket
Socket
Sign inDemoInstall

@11ty/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

@11ty/posthtml-urls

PostHTML plugin for transforming URLs. A fork of posthtml/posthtml-urls.


Version published
Weekly downloads
5.2K
decreased by-50.51%
Maintainers
1
Weekly downloads
 
Created
Source

@11ty/posthtml-urls

PostHTML plugin for transforming URLs. This is a fork of posthtml/posthtml-urls.

Installation

Node.js >= 6 is required. To install, type this at the command line:

npm install @11ty/posthtml-urls

Usage

const posthtml = require('posthtml');
const urls = require('posthtml-urls');

const options = {
  eachURL: (url, attr, element) => `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

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.

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 09 Feb 2024

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