芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/www/node_modules/htmlparser2/README.md
# htmlparser2 [](https://npmjs.org/package/htmlparser2) [](https://npmjs.org/package/htmlparser2) [](http://travis-ci.org/fb55/htmlparser2) [](https://coveralls.io/r/fb55/htmlparser2) A forgiving HTML/XML/RSS parser. The parser can handle streams and provides a callback interface. ## Installation npm install htmlparser2 A live demo of htmlparser2 is available [here](https://astexplorer.net/#/2AmVrGuGVJ). ## Usage ```javascript const htmlparser2 = require("htmlparser2"); const parser = new htmlparser2.Parser( { onopentag(name, attribs) { if (name === "script" && attribs.type === "text/javascript") { console.log("JS! Hooray!"); } }, ontext(text) { console.log("-->", text); }, onclosetag(tagname) { if (tagname === "script") { console.log("That's it?!"); } } }, { decodeEntities: true } ); parser.write( "Xyz