Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
htmlparser-to-html
Advanced tools
Converts the JSON that the htmlparser/htmlparser2 package produces back to HTML.
Converts the JSON that htmlparser (and probably htmlparser2) produces back to HTML.
Useful if you're doing some sort of transformation.
Tests are based on reversing the parser tests in htmlparser, so they are quite comprehensive.
Returns a single function html(tree, [parent, mapFn])
which returns a html string.
Optionally, you can apply a function to each element just before they are converted to HTML - for example, converting items that are not in the right format into htmlparser-compatible input.
tree
: a tree structure produced by htmlparserparent
: optional param - a parent element, only used for the mapFn
.mapFn
: a function(item, parent) that is applied to each element just before the element is converted into html. The parent parameter is either the original value of the parent (default: null), or the parent element of this child element.var html = require('htmlparser-to-html');
console.log(html([
{ type: 'tag'
, name: 'html'
, children:
[ { type: 'tag'
, name: 'title'
, children: [ { data: 'The Title', type: 'text' } ]
}
, { type: 'tag'
, name: 'body'
, children: [ { data: 'Hello world', type: 'text' } ]
}
]
}
]));
// outputs: <html><title>The Title</title><body>Hello world</body></html>
Of course, you probably want to generate the array from htmlparser.
FAQs
Converts the JSON that the htmlparser/htmlparser2 package produces back to HTML.
The npm package htmlparser-to-html receives a total of 168 weekly downloads. As such, htmlparser-to-html popularity was classified as not popular.
We found that htmlparser-to-html 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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.