html-absolutely
v1.2.0
Published
Insert html and receive back html with all relative urls resolved to an absolute url.
Downloads
4
Maintainers
Readme
html-absolutely
Insert html and receive back html with all relative urls resolved to an absolute url. Works with src and href attributes in html elements and with url attributes inside inline style attributes and style tags.
Table of Contents
absolutely
Insert html and receive back html with all relative urls resolved to an absolute url.
Ignores empty urls (e.g. href="").
Parameters
htmlstring the HTML to parse for stylesheetsresolveTostring to which root url discovered urls should be resolved.
Examples
const absolutely = require('html-absolutely')
const { html } = absolutely(html, { resolveTo: 'https://www.example.com' })
console.log(html)Returns string html - the html with absolute urls
