Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Node Wrapper for 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.
To use this library simply install it using npm:
npm install htmltidy
var tidy = require('htmltidy').tidy;
tidy('<table><tr><td>badly formatted html</tr>', function(err, html) {
console.log(html);
});
tidy(text, [options], callback)
Clean html like text according optional configuration tidy options.
var opts = {
doctype: 'html5',
hideComments: false, // multi word options can use a hyphen or "camel case"
indent: true
}
createWorker([options])
Create transform stream which can receive html like data as writable stream and output cleaned html/xml as readable stream.
var worker = tidy.createWorker(opts);
request.get('http://www.nodejs.org').pipe(worker).pipe(process.stdout);
0.0.5 - Feb 25, 2013
- changes contributed by Keith Rosenberg
0.0.4 - Feb 23, 2013
- fixed error in package.json
0.0.3 - Jan 11, 2013
- fixed engine version error
0.0.2 - Oct 5, 2012
- node Stream support, pipe and so on
- more examples
- example with worker pool for web front ends
- experimental support for osx #1
0.0.1 - Sep 29, 2012
- First NPM release
FAQs
tidy bad html
The npm package htmltidy receives a total of 360 weekly downloads. As such, htmltidy popularity was classified as not popular.
We found that htmltidy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.