New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

htmltidy2

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

htmltidy2

HTML Tidy

latest
Source
npmnpm
Version
1.2.0
Version published
Maintainers
1
Created
Source

HTML Tidy2 CI Status

Node Wrapper for HTML Tidy

What is HTML Tidy?

HTML Tidy is an open source program for checking and generating clean XHTML/HTML. It cleans up coding errors in HTML files and fixes bad formatting. It can output files in the HTML, XHTML or XML file format.

Using HTML Tidy, developers can programatically clean up and fix poorly-written HTML pages. Another use is to convert HTML to XHTML or XML. These files can then be easily processed using the tools in the traditional XML chain, such as XSL transforms.

Installation

$ npm install htmltidy2

Example

var { tidy } = require('htmltidy2')
tidy('<table><tr><td>badly formatted html</tr>', function (err, html) {
  console.log(html)
})

API

tidy(text, [options], callback, binary)

Clean html like text according optional configuration tidy options.

Custom binary path with binary param.

var opts = {
  doctype: 'html5',
  hideComments: false, //  multi word options can use a hyphen or "camel case"
  indent: true,
}

createWorker([options], binary)

Create transform stream which can receive html like data as writable stream and output cleaned html/xml as readable stream.

Custom binary path with binary param.

var worker = tidy.createWorker(opts)
request.get('http://www.nodejs.org').pipe(worker).pipe(process.stdout)
Experimental Fork!
  • HTML Tidy

FAQs

Package last updated on 24 Jan 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