SkillAgentSearch skills...

Absolutify

Replace relative URLs with absolute in a given HTML string.

Install / Use

/learn @sorensen/Absolutify
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Absolutify

Build Status devDependency Status NPM version

Replace relative URLs in a string with absolute URLs. This library is extremely small and lightweight, and requires no external dependencies.

The primary motivation of this library is to be concise and performant, when searching for this functionality, the common solution is to use actual DOM manipulation for finding and replacing URLs, using jQuery, cheerio, and/or jsdom.

Install

npm install absolutify

Usage

var absolutify = require('absolutify')

var html = '<html><a href="/sorensen">Home</a></html>'
var site = 'https://github.com'

var parsed = absolutify(html, site)
// '<html><a href="https://github.com/sorensen">Home</a></html>'

var byFunction = absolutify(html, function(url, attrName) {
  // url === '/sorensen'
  // attr === 'href'
  return site + url
})

Supported Attributes

This library searches a given HTML string for the following attribute values that start with either / or any form of ../ pathing.

| Attribute | | ---------- | | href | | src | | codebase | | cite | | background | | action | | profile | | formaction | | icon | | manifest | | archive |

License

Related Skills

View on GitHub
GitHub Stars22
CategoryDevelopment
Updated1y ago
Forks6

Languages

JavaScript

Security Score

75/100

Audited on Aug 5, 2024

No findings